Skip to content

CI: Fix nightly toolchain #30

CI: Fix nightly toolchain

CI: Fix nightly toolchain #30

Workflow file for this run

name: Push
on: ["push"]
env:
CARGO_TERM_COLOR: always
jobs:
Test:
runs-on: "ubuntu-latest"
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install nightly
uses: dtolnay/rust-toolchain@master
toolchain: nightly-2024-01-12

Check failure on line 18 in .github/workflows/push.yml

View workflow run for this annotation

GitHub Actions / Push

Invalid workflow file

The workflow is not valid. .github/workflows/push.yml (Line: 18, Col: 9): Unexpected value 'toolchain'
id: toolchain
- name: Override default toolchain
run: rustup override set ${{steps.toolchain.outputs.name}}
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test --workspace --verbose --all-features --no-fail-fast