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