Skip to content

Commit

Permalink
docs: README
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielrufino committed Dec 5, 2024
1 parent 0ef53fb commit 36d5507
Showing 1 changed file with 35 additions and 5 deletions.
40 changes: 35 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,52 @@
# Rust CI

This repository contains the configuration for a Continuous Integration (CI) pipeline for Rust projects. The pipeline is designed to ensure that the code is checked for compilation errors, follows best coding practices, builds successfully, and passes automated tests.
![GitHub Actions](https://img.shields.io/github/actions/workflow/status/actalog/rust-ci/ci.yml?branch=main)
![License](https://img.shields.io/github/license/actalog/rust-ci)

## Using This Action in Your Workflow
A GitHub Action to streamline Continuous Integration (CI) for Rust projects. This Action ensures code quality, builds, and tests your Rust project, maintaining high standards in Rust development.

To use this CI configuration in your workflow, include it as follows in your CI file:
---

## πŸš€ **Features**

- **Automatic Builds:** Ensures your code compiles without issues.
- **Code Quality Checks:** Verifies adherence to Rust standards.
- **Automated Testing:** Runs tests to validate your project's functionality.
- **Plug-and-Play:** Easy to integrate into your existing Rust projects.

---

## πŸ“¦ **How to Use**

Add the following to your `.github/workflows/ci.yml`:

```yaml
name: CI

on:
- pull_request
- push

jobs:
rust-ci:
name: Rust CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actalog/rust-ci@main
uses: actions/checkout@v4
uses: actalog/rust-ci@v1
```
---
## 🌟 **Why Use Rust CI?**
- Simplifies your CI/CD setup.
- Optimized for Rust projects.
- Saves time and enforces best practices.
- Continuously improves based on community feedback.
---
## πŸ“œ **License**
This project is licensed under The Unlicense. See the [LICENSE](./LICENSE) file for details.

0 comments on commit 36d5507

Please sign in to comment.