ci: skip cmake install if already present #584
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@v6 | |
| - 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@v4 | |
| with: | |
| sarif_file: results.sarif | |
| static-code-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install cmake | |
| run: cmake --version || (sudo apt-get update && sudo apt-get install -y cmake) | |
| - 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@v6 | |
| - name: Install cmake | |
| run: cmake --version || (sudo apt-get update && sudo apt-get install -y cmake) | |
| - name: Set up Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Run test script | |
| run: ./tests/script/cargo_test.sh |