Skip to content

Use Rust stable to install cargo hack. #13

Use Rust stable to install cargo hack.

Use Rust stable to install cargo hack. #13

Workflow file for this run

name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: "${{ matrix.os.name }} ${{ matrix.test.name }} (${{ matrix.toolchain }})"
continue-on-error: false
runs-on: ${{ matrix.os.distro }}
strategy:
fail-fast: false
matrix:
os:
- { name: Linux, distro: ubuntu-latest }
- { name: Windows, distro: windows-latest }
- { name: macOS, distro: macOS-latest }
toolchain: [nightly, stable, "1.61"]
steps:
- name: Checkout Sources
uses: actions/checkout@v2
- name: Install Rust (stable)
uses: dtolnay/rust-toolchain@stable
- name: Install Rust (${{ matrix.toolchain }})
uses: dtolnay/rust-toolchain@master
if: matrix.toolchain != "stable"

Check failure on line 32 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 32, Col: 13): Unexpected symbol: '"stable"'. Located at position 21 within expression: matrix.toolchain != "stable"
with:
toolchain: ${{ matrix.toolchain }}
- name: Install Cargo Hack
run: cargo +stable install cargo-hack
shell: bash
- name: Check Feature Combinations
run: cargo hack check --feature-powerset --no-dev-deps --skip _nightly
shell: bash
- name: Run Tests
run: cargo hack test --feature-powerset --skip _nightly
shell: bash