Merge another test workflow
This commit is contained in:
parent
971c3fd9eb
commit
2de2235ad3
1 changed files with 4 additions and 11 deletions
|
|
@ -5,24 +5,17 @@ on:
|
||||||
name: cargo test
|
name: cargo test
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ubuntu-latest
|
||||||
name: ${{ matrix.os }} / ${{ matrix.toolchain }}
|
name: ubuntu / ${{ matrix.toolchain }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
toolchain: [stable, beta, nightly]
|
||||||
toolchain: [stable]
|
|
||||||
include:
|
|
||||||
- os: ubuntu-latest
|
|
||||||
toolchain: beta
|
|
||||||
- os: ubuntu-latest
|
|
||||||
toolchain: nightly
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: ${{ matrix.toolchain }}
|
toolchain: ${{ matrix.toolchain }}
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
- name: cargo test
|
- name: cargo test
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue