feat: Enhance documentation and workflow clarity; add CI configuration for automated checks
CI / Format Check (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Tests (push) Has been cancelled

This commit is contained in:
2026-05-23 18:30:44 -05:00
parent 2ecab4db12
commit 36c4ed7b62
6 changed files with 67 additions and 35 deletions
+40
View File
@@ -0,0 +1,40 @@
name: CI
on:
push:
branches:
- main
- planning
pull_request:
branches:
- main
- planning
jobs:
rustfmt:
name: Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt -- --check
clippy:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- run: cargo clippy --all-targets --all-features -- -D warnings
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --verbose