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 47d2835 commit a09f0a0Copy full SHA for a09f0a0
.github/workflows/ci.yml
@@ -33,3 +33,28 @@ jobs:
33
34
- name: Checkout
35
uses: actions/checkout@v2
36
+
37
+ - name: Install Rust
38
+ uses: actions-rs/toolchain@v1
39
+ with:
40
+ toolchain: nightly-2020-11-09
41
+ override: true
42
+ components: rustfmt, clippy
43
44
+ - uses: actions-rs/cargo@v1
45
46
+ command: fmt
47
+ args: --all -- --check
48
49
50
51
+ command: clippy
52
53
54
55
+ command: test
56
+ args: -- --nocapture
57
58
59
60
+ command: doc
0 commit comments