fix(deps): update all - autoclosed #477
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 Test CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| clippy-sarif: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.ref == 'refs/heads/master' }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy, rustfmt | |
| - run: cargo install clippy-sarif sarif-fmt | |
| - run: | |
| RUSTFLAGS="-A unused" cargo clippy --all-targets --all-features --message-format=json -- -Dwarnings | | |
| clippy-sarif | tee results.sarif | sarif-fmt | |
| - name: Upload SARIF file | |
| uses: github/codeql-action/upload-sarif@v3 | |
| with: | |
| sarif_file: results.sarif | |
| static-code-analysis: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy, rustfmt | |
| - name: Check formatting | |
| run: cargo fmt --all -- --check | |
| - name: Check lints | |
| run: RUSTFLAGS="-A unused" cargo clippy --all-targets --all-features -- -Dwarnings | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Run test script | |
| run: ./tests/script/cargo_test.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.TEST_GITHUB_TOKEN }} |