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 de7ad5a + bfff5a4 commit 5455139Copy full SHA for 5455139
.github/workflows/main.yml
@@ -0,0 +1,36 @@
1
+
2
+name: CI
3
4
+on:
5
+ push:
6
+ branches: [ master ]
7
+ pull_request:
8
9
+jobs:
10
+ test:
11
+ name: Run tests
12
+ runs-on: ubuntu-latest
13
+ continue-on-error: ${{ matrix.rust == 'nightly' }}
14
+ strategy:
15
+ matrix:
16
+ rust: [beta, nightly]
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ with:
20
+ fetch-depth: 1
21
22
+ - name: Install rust toolchain
23
+ uses: actions-rs/toolchain@v1
24
25
+ toolchain: ${{ matrix.rust }}
26
+ profile: minimal
27
+ override: true
28
29
+ - name: Build datafrog
30
+ run: cargo build
31
32
+ - name: Execute tests
33
+ run: cargo test
34
35
+ - name: Check examples
36
+ run: cargo check --examples
.travis.yml
0 commit comments