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 d934e40 commit e101f37Copy full SHA for e101f37
.github/workflows/main.yml
@@ -0,0 +1,35 @@
1
+on: [push, pull_request]
2
+
3
+name: CI
4
5
+jobs:
6
+ build_and_test:
7
+ name: Check
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - uses: actions-rs/toolchain@v1
12
+ with:
13
+ profile: minimal
14
+ toolchain: stable
15
+ override: true
16
+ components: rustfmt, clippy
17
+ - uses: actions-rs/cargo@v1
18
+ name: Build
19
20
+ command: build
21
+ args: --release --all-features
22
23
+ name: Test
24
25
+ command: test
26
27
+ name: rustfmt
28
29
+ command: fmt
30
+ args: --all -- --check
31
32
+ name: clippy
33
34
+ command: clippy
35
+ args: -- -D warnings
0 commit comments