chore(deps): update github ci dependencies (#76) #332
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| commitlint: | |
| runs-on: ubuntu-latest | |
| name: Commitlint | |
| steps: | |
| - name: Run commitlint | |
| uses: opensource-nepal/commitlint@v1 | |
| test: | |
| strategy: | |
| matrix: | |
| toolchain: [stable, nightly] | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| # Only test nightly on Linux | |
| exclude: | |
| - os: macos-latest | |
| toolchain: nightly | |
| - os: windows-latest | |
| toolchain: nightly | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: swatinem/rust-cache@v2 | |
| - name: fetch Rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - name: toolchain version | |
| run: cargo -vV | |
| - name: Clippy | |
| if: github.event_name == 'pull_request' | |
| uses: giraffate/clippy-action@v1 | |
| with: | |
| reporter: "github-pr-review" | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| clippy_flags: -- -Dwarnings | |
| - name: build | |
| run: cargo build --all --verbose | |
| - name: test | |
| run: cargo test --all --verbose | |
| #check-unused-dependencies: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - uses: actions/cache@v3 | |
| # with: | |
| # path: | | |
| # ~/.cargo/bin/ | |
| # ~/.cargo/registry/index/ | |
| # ~/.cargo/registry/cache/ | |
| # ~/.cargo/git/db/ | |
| # target/ | |
| # key: ${{ runner.os }}-cargo-check-unused-dependencies-${{ hashFiles('**/Cargo.toml') }} | |
| # - uses: actions-rs/toolchain@v1 | |
| # with: | |
| # toolchain: nightly | |
| # override: true | |
| # - name: Installs cargo-udeps | |
| # run: cargo install --force cargo-udeps | |
| # - name: Run cargo udeps | |
| # run: cargo udeps | |
| miri: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: swatinem/rust-cache@v2 | |
| - name: fetch Rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| components: miri | |
| - name: Test with Miri | |
| run: | | |
| export MIRIFLAGS="-Zmiri-disable-isolation" | |
| cargo +nightly miri setup && cargo +nightly miri test |