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 9ee7df1 commit f870d34Copy full SHA for f870d34
.github/workflows/tests.yaml
@@ -0,0 +1,40 @@
1
+on: [push, pull_request]
2
+
3
+name: Tests
4
5
+jobs:
6
+ test:
7
+ name: Tests
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ rust:
12
+ - stable
13
+ - 1.34.0
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v2
17
18
+ - name: Install toolchain
19
+ uses: actions-rs/toolchain@v1
20
+ with:
21
+ profile: minimal
22
+ toolchain: ${{ matrix.rust }}
23
+ override: true
24
25
+ - name: Test (default features)
26
+ uses: actions-rs/cargo@v1
27
28
+ command: test
29
30
+ - name: Test (no default features)
31
32
33
34
+ args: --no-default-features
35
36
+ - name: Test (all features)
37
38
39
40
+ args: --all-features
0 commit comments