build(deps): Bump anyhow from 1.0.89 to 1.0.90 (#74) #107
This file contains 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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
cargo-checkmate: | |
name: cargo-checkmate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
target: wasm32-wasip1 | |
- name: Enable cache | |
uses: Swatinem/rust-cache@v2 | |
- run: cargo install cargo-checkmate | |
- run: cargo checkmate run audit | |
- run: cargo checkmate run build | |
- run: cargo checkmate run check | |
- run: cargo checkmate run clippy | |
- run: cargo checkmate run format | |
- run: cargo checkmate run doc | |
semver-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check semver | |
uses: obi1kenobi/cargo-semver-checks-action@v2 | |
# Until it is running, keep it as is | |
continue-on-error: true | |
udeps-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
target: wasm32-wasip1 | |
- name: Enable cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Install udeps | |
run: cargo install --git https://github.com/est31/cargo-udeps --locked | |
- name: Run udeps | |
run: cargo +nightly udeps | |
cargo-deny: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
checks: | |
- advisories | |
- bans licenses sources | |
# Prevent sudden announcement of a new advisory from failing ci: | |
continue-on-error: ${{ matrix.checks == 'advisories' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: EmbarkStudios/cargo-deny-action@main | |
with: | |
command: check ${{ matrix.checks }} | |
codecov-check: | |
name: codecov-check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
target: wasm32-wasip1 | |
- name: Enable cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Run cargo-tarpaulin | |
uses: actions-rs/[email protected] | |
with: | |
version: "0.15.0" | |
args: "-- --test-threads 1" | |
- name: Upload to codecov.io | |
uses: codecov/[email protected] | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-report | |
path: cobertura.xml | |
# Need to check how to test wasn with tarpaulin. | |
continue-on-error: true |