We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 738e39f commit 9ebcfdbCopy full SHA for 9ebcfdb
.github/workflows/prod.yml
@@ -14,9 +14,13 @@ env:
14
jobs:
15
build:
16
runs-on: ubuntu-latest
17
+ strategy:
18
+ matrix:
19
+ rust: [stable, beta, nightly]
20
21
steps:
22
- uses: actions/checkout@v2
23
+ - run: rustup toolchain install ${{ matrix.rust }} && rustup default ${{ matrix.rust }} && rustup update ${{ matrix.rust }}
24
- name: Build
25
run: cargo build --verbose
26
- name: Test
@@ -25,5 +29,5 @@ jobs:
29
run: cargo clippy -- -D warnings
30
- name: Format
27
31
run: cargo fmt -- --check
28
-
32
+
33
0 commit comments