deps: update some dependencies #414
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: test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| test-linux: | |
| runs-on: ubuntu-latest | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Install Rust specified toolchain | |
| run: rustup show | |
| - name: Run sccache-cache | |
| uses: mozilla-actions/[email protected] | |
| - name: Install just, nextest, cargo-llvm-cov, cargo-hack, and wasmtime | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: just,nextest,cargo-llvm-cov,cargo-hack,wasmtime | |
| - name: Run cargo doc, deny warnings | |
| run: | | |
| export RUSTDOCFLAGS="-D warnings" | |
| cargo doc --all-features --no-deps | |
| - name: Run cargo clippy | |
| run: | | |
| cargo hack clippy --each-feature | |
| - name: Run tests and collect coverage | |
| run: just ci-test | |
| - name: Upload coverage information | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| fail_ci_if_error: true | |
| verbose: true | |
| test-windows: | |
| runs-on: windows-2022 | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Install Rust specified toolchain | |
| run: rustup show | |
| - name: Run sccache-cache | |
| uses: mozilla-actions/[email protected] | |
| - name: Install cargo-nextest | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: nextest | |
| - name: Run cargo nextest | |
| run: | | |
| cargo nextest run --profile ci --all-features | |
| test-macos: | |
| runs-on: macos-15 | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Install Rust specified toolchain | |
| run: rustup show | |
| - name: Run sccache-cache | |
| uses: mozilla-actions/[email protected] | |
| - name: Install cargo-nextest | |
| uses: taiki-e/install-action@v2 | |
| with: | |
| tool: nextest | |
| - name: Run cargo nextest | |
| run: | | |
| cargo nextest run --profile ci --all-features |