build(deps): bump actions/upload-artifact from 5 to 6 #303
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
| on: [push, pull_request] | |
| name: Continuous integration | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Rust toolchain | |
| run: | | |
| rustup update stable | |
| rustup default stable | |
| - name: Check | |
| run: | | |
| cargo check | |
| test: | |
| name: Test Suite | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Rust toolchain | |
| run: | | |
| rustup update stable | |
| rustup default stable | |
| - name: Test | |
| run: | | |
| cargo test | |
| clippy: | |
| name: Clippy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Rust toolchain | |
| run: | | |
| rustup update stable | |
| rustup default stable | |
| rustup component add clippy | |
| - name: Run Clippy | |
| run: | | |
| cargo clippy -- -D warnings -A clippy::nonminimal_bool |