Add Clippy CI testing #57
Workflow file for this run
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: test suite | |
# Pushes to long living branches and all PRs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
rust-version: ["1.70.0", "1.75.0"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: "${{ matrix.rust-version }}" | |
targets: "wasm32-unknown-unknown" | |
- run: cargo build | |
- run: cargo build --target wasm32-unknown-unknown | |
test: | |
strategy: | |
matrix: | |
rust-version: ["1.70.0", "1.75.0"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: "${{ matrix.rust-version }}" | |
- run: cargo test | |
clippy: | |
strategy: | |
matrix: | |
rust-version: ["1.70.0", "1.75.0"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: "${{ matrix.rust-version }}" | |
components: "clippy" | |
- run: cargo clippy --all-targets -- -D warnings |