Skip to content

Use lint on MSRV only & update workflow with gptman (#33) #103

Use lint on MSRV only & update workflow with gptman (#33)

Use lint on MSRV only & update workflow with gptman (#33) #103

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_INCREMENTAL: 0
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
rust:
- stable
- msrv
include:
- os: ubuntu-latest
rust: msrv
lint: 1
- rust: stable
rust-args: --all-features
runs-on: ${{ matrix.os }}
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Install toolchain
shell: bash
run: |
ver="${{ matrix.rust }}"
if [ "$ver" = msrv ]; then
ver=$(cargo metadata --format-version 1 --no-deps | \
jq -r '.packages[0].rust_version')
extra=(-c rustfmt -c clippy)
fi
rustup toolchain install "$ver" --profile minimal --no-self-update "${extra[@]}"
rustup default "$ver"
echo "Installed:"
cargo --version
rustc --version --verbose
- uses: Swatinem/rust-cache@v2
- name: cargo test
run: cargo test --workspace ${{ matrix.rust-args }}
- name: rustfmt
if: github.event_name == 'pull_request' && matrix.lint
run: cargo fmt --all -- --check
- name: clippy
if: github.event_name == 'pull_request' && matrix.lint
run: cargo clippy --all --tests --all-features -- -D warnings