Add per crate READMEs and do various small fixes and cleanups #364
Workflow file for this run
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: Rust Stable CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lints: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install dependencies | |
| run: sudo apt -y update && sudo apt -y install flex bison | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: sensorfu/setup-rust-action@v1 | |
| with: | |
| components: clippy,rustfmt | |
| - run: cargo clippy -- -D warnings | |
| - run: cargo fmt --all -- --check |