0.5.3 version bump #122
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 Rust code | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
rustfmt: | |
name: Check formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout reposistory | |
uses: actions/checkout@v4 | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
clippy: | |
name: Check clippy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout reposistory | |
uses: actions/checkout@v4 | |
- name: Run cargo clippy | |
run: | | |
cargo clippy --version | |
cargo clippy --all --all-targets --all-features -- -D warnings | |
macos-check: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test | |
run: cargo test | |
ubuntu-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test | |
run: cargo test | |
windows-check: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test | |
run: cargo test | |
msrv: | |
name: Check MSRV | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout reposistory | |
uses: actions/checkout@v4 | |
- name: Setup MSRV checker | |
uses: taiki-e/install-action@cargo-hack | |
# To find current MSRV use `cargo msrv find`. Install it with `cargo install cargo-msrv --locked` | |
- name: Run MSRV checker | |
run: cargo hack check --rust-version --workspace --all-targets --ignore-private |