Documentation overhaul: extract module list to separate file, add cra… #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build & Test | |
| on: [push, pull_request] | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: cargo build --workspace | |
| - run: cargo xtask check | |
| - run: cargo test 2>&1 | tail -30 | |
| - name: Audit dependencies | |
| run: cargo audit 2>&1 || echo "cargo-audit not installed (optional)" |