We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28b23fd commit 4d4ef0dCopy full SHA for 4d4ef0d
.github/workflows/test.yml
@@ -0,0 +1,29 @@
1
+name: test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+ pull_request:
9
10
11
12
+jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: dtolnay/rust-toolchain@stable
18
+ - uses: taiki-e/install-action@cargo-hack
19
20
+ - name: Check
21
+ run: cargo hack check --feature-powerset
22
23
+ - name: Build
24
+ run: cargo hack build --feature-powerset
25
26
+ - name: Test
27
+ env:
28
+ RUST_BACKTRACE: full
29
+ run: cargo hack test --feature-powerset
0 commit comments