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 9958c45 commit 8c1d55aCopy full SHA for 8c1d55a
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+name: CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ msrv:
7
+ name: Rust MSRV
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - uses: dtolnay/rust-toolchain@1.36.0
12
+ - run: cargo check --no-default-features
13
+ - run: cargo check --no-default-features --features "use_alloc"
14
+ - run: cargo check
15
16
+ stable:
17
+ name: Rust Stable
18
19
20
21
+ - uses: dtolnay/rust-toolchain@stable
22
23
24
+ - run: cargo test
0 commit comments