Update GH actions to modern images #483
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | ||
name: test | ||
jobs: | ||
test: | ||
name: test (${{ matrix.toolchain }}) | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
toolchain: [stable, nightly] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@${{ matrix.toolchain }} | ||
Check failure on line 14 in .github/workflows/test.yml GitHub Actions / testInvalid workflow file
|
||
- run: cargo test --all-features |