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.
2 parents 92e5d59 + 0801c52 commit f378d94Copy full SHA for f378d94
.github/workflows/rust.yml
@@ -0,0 +1,30 @@
1
+on: [push, pull_request]
2
+
3
+name: Continuous integration
4
5
+jobs:
6
+ test:
7
+ name: Test Suite
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ rust:
12
+ - stable
13
+ - beta
14
+ - nightly
15
+ - 1.36.0 # MSRV
16
17
+ steps:
18
+ - uses: actions/checkout@v3
19
20
+ - name: Install rust nightly
21
+ uses: dtolnay/rust-toolchain@master
22
+ with:
23
+ toolchain: ${{ matrix.rust }}
24
25
+ - uses: taiki-e/install-action@v2
26
27
+ tool: cargo-hack
28
29
+ - run: cargo hack build --feature-powerset --all-targets
30
+ - run: cargo hack test --feature-powerset --all-targets
0 commit comments