Skip to content

Allow a wider version range for nix (up to 0.27) #194

Allow a wider version range for nix (up to 0.27)

Allow a wider version range for nix (up to 0.27) #194

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: stable
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')
fi
rustup toolchain install "$ver" --profile minimal --no-self-update
rustup default "$ver"
echo "Installed:"
cargo --version
rustc --version --verbose
- uses: Swatinem/rust-cache@v2
- name: Set nix to minimum version (0.24)
if: matrix.rust == 'msrv'
run: cargo update -p nix --precise 0.24.0
- 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