We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f292c5 commit 23557a5Copy full SHA for 23557a5
.github/workflows/test.yml
@@ -0,0 +1,34 @@
1
+on:
2
+ push:
3
+ branches: [ staging, trying, master ]
4
+ pull_request:
5
+
6
+name: Test Suite
7
8
+jobs:
9
+ ci-linux:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ rust: [stable]
14
15
+ include:
16
+ - rust: 1.36.0 # Higher than the MSRV due to dependencies.
17
+ TARGET: x86_64-unknown-linux-gnu
18
19
+ # Test nightly but don't fail
20
+ - rust: nightly
21
+ experimental: true
22
23
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - uses: actions-rs/toolchain@v1
27
+ with:
28
+ profile: minimal
29
+ toolchain: ${{ matrix.rust }}
30
+ target: ${{ matrix.TARGET }}
31
+ override: true
32
+ - uses: actions-rs/cargo@v1
33
34
+ command: test
0 commit comments