silence linter! a vibe coder is speaking #54
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 | |
| on: | |
| push: | |
| branches: ["main"] | |
| jobs: | |
| build-test-bench: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: cargo build | |
| - name: Test | |
| run: cargo test --quiet --lib | |
| - name: Test Shortdeck | |
| run: cargo test --quiet --lib --features shortdeck | |
| - name: Benchmark | |
| run: cargo bench --quiet --message-format short |