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 160de62 commit fca2a2bCopy full SHA for fca2a2b
.github/workflows/check.yml
@@ -0,0 +1,16 @@
1
+name: Check
2
+on: push
3
+jobs:
4
+ cargo:
5
+ name: Cargo
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v2
9
+ - uses: actions-rs/toolchain@v1
10
+ with:
11
+ components: clippy, rustfmt
12
+ default: true
13
+ - run: cargo fmt -- --check
14
+ - run: cargo build --all-targets --all-features
15
+ - run: cargo clippy --all-targets --all-features -- -D warnings
16
+ - run: cargo test --all-features
rust-toolchain
@@ -0,0 +1 @@
+stable
0 commit comments