We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e2b9f9 commit 9f17cdeCopy full SHA for 9f17cde
.github/workflows/main.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+env:
10
+ CARGO_TERM_COLOR: always
11
12
+jobs:
13
+ build:
14
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - uses: actions/checkout@master
19
+ - uses: actions-rs/toolchain@v1
20
+ with:
21
+ toolchain: nightly
22
+ override: true
23
+ - name: Build
24
+ run: cargo build --verbose
25
+ - name: Run tests
26
+ run: cargo test --verbose
27
+ - name: Run tests with tokio backend
28
+ run: cargo test --no-default-features --features tokio
0 commit comments