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 d7fbbd8 commit dee8b47Copy full SHA for dee8b47
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: ci
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ test:
6
+ name: test
7
+ runs-on: ${{ matrix.os }}
8
+ strategy:
9
+ matrix:
10
+ build: [pinned, stable]
11
+ include:
12
+ - build: pinned
13
+ os: ubuntu-18.04
14
+ rust: 1.40.0
15
+ - build: stable
16
17
+ rust: stable
18
+ steps:
19
+ - uses: actions/checkout@v1
20
+ - name: Install Rust
21
+ uses: hecrj/setup-rust-action@v1
22
+ with:
23
+ rust-version: ${{ matrix.rust }}
24
+ - name: Build System Info
25
+ run: rustc --version
26
+ - name: Run tests
27
+ run: cargo test
0 commit comments