Skip to content

Update workflow actions to latest #150

Update workflow actions to latest

Update workflow actions to latest #150

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
rust:
- stable
- msrv
- 1.64.0 # cli MSRV
include:
- os: ubuntu-latest
rust: stable
lint: 1
- rust: stable
rust-args: --all-features
- rust: 1.64.0
rust-args: --all-features
runs-on: ${{ matrix.os }}
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Select Rust version
shell: bash
run: |
RUST_VER="${{ matrix.rust }}"
if [ "$RUST_VER" = msrv ]; then
RUST_VER=$(cargo metadata --format-version 1 --no-deps | \
jq -r '.packages[0].rust_version')
echo "MSRV: $RUST_VER"
fi
echo "RUST_VER=$RUST_VER" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ env.RUST_VER }}
- 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