diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-08-29 08:50:05 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-08-29 08:50:05 -0700 |
| commit | 67b1409f03cdb4435021c3e15daa4cb4affe452f (patch) | |
| tree | d71c6f767ff1181a8de6766b77b1af7fe9e2a47a /src/apple_silicon/.github/workflows/ci.yml | |
| parent | add `git-leaderboard` (diff) | |
| parent | Merge pull request #3 from fcuny/dependabot/cargo/thiserror-2.0.11 (diff) | |
| download | x-67b1409f03cdb4435021c3e15daa4cb4affe452f.tar.gz | |
Merge remote-tracking branch 'import/main' into fcuny/rust
Diffstat (limited to 'src/apple_silicon/.github/workflows/ci.yml')
| -rw-r--r-- | src/apple_silicon/.github/workflows/ci.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/apple_silicon/.github/workflows/ci.yml b/src/apple_silicon/.github/workflows/ci.yml new file mode 100644 index 0000000..59ce8e7 --- /dev/null +++ b/src/apple_silicon/.github/workflows/ci.yml @@ -0,0 +1,35 @@ +name: 🦀 Rust CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + + - uses: dtolnay/rust-toolchain@stable + with: + components: rustfmt, clippy + + - uses: Swatinem/rust-cache@v2 + + - name: Check formatting + run: cargo fmt --all -- --check + + - name: Run clippy + run: cargo clippy -- -D warnings + + - name: Run tests + run: cargo test --verbose + + - name: Build + run: cargo build --verbose |
