Skip to content

Commit d4908fa

Browse files
committed
fix: matrix
1 parent 28d3415 commit d4908fa

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/rust.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,16 @@ jobs:
6060
token: ${{ secrets.GITHUB_TOKEN }}
6161
args: --all-features
6262
coverage:
63-
runs-on: ubuntu-latest
63+
runs-on: ${{ matrix.os }}
64+
strategy:
65+
matrix:
66+
os: [ macos-latest, windows-latest, ubuntu-latest ],
67+
toolchain: [ stable, nightly ]
6468
steps:
6569
- uses: actions/checkout@v2
6670
- uses: actions-rs/toolchain@v1
6771
with:
68-
toolchain: stable
72+
toolchain: ${{ matrix.toolchain }}
6973
- uses: actions/cache@v2
7074
with:
7175
path: |

0 commit comments

Comments
 (0)