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 bf54c72 commit cd7c041Copy full SHA for cd7c041
.github/workflows/test.yml
@@ -1,4 +1,4 @@
1
-name: Test
+name: Build and Test
2
3
on:
4
push:
@@ -10,9 +10,14 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
- test:
+ build_and_test:
14
runs-on: ubuntu-latest
15
+ strategy:
16
+ matrix:
17
+ toolchain:
18
+ - stable
19
steps:
- - uses: actions/checkout@v4
- - name: Run tests
- run: cargo test --verbose
20
+ - uses: actions/checkout@v4
21
+ - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
22
+ - run: cargo build --verbose
23
+ - run: cargo test --verbose
0 commit comments