We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 971c3fd commit 2de2235Copy full SHA for 2de2235
github/workflows/test.yml
@@ -5,24 +5,17 @@ on:
5
name: cargo test
6
jobs:
7
test:
8
- runs-on: ${{ matrix.os }}
9
- name: ${{ matrix.os }} / ${{ matrix.toolchain }}
+ runs-on: ubuntu-latest
+ name: ubuntu / ${{ matrix.toolchain }}
10
strategy:
11
- fail-fast: false
12
matrix:
13
- os: [ubuntu-latest, macos-latest, windows-latest]
14
- toolchain: [stable]
15
- include:
16
- - os: ubuntu-latest
17
- toolchain: beta
18
19
- toolchain: nightly
+ toolchain: [stable, beta, nightly]
20
steps:
21
- uses: actions-rs/toolchain@v1
22
with:
23
profile: minimal
24
toolchain: ${{ matrix.toolchain }}
25
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
26
27
submodules: true
28
- name: cargo test
0 commit comments