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 2018b17 commit 9cc8ae3Copy full SHA for 9cc8ae3
.github/workflows/ci.yml
@@ -8,7 +8,7 @@ on:
8
name: Continuous integration
9
10
jobs:
11
- ci:
+ ci-stable:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
@@ -28,3 +28,23 @@ jobs:
28
with:
29
command: check
30
args: --target=${{ matrix.target }} --examples
31
+ ci-nightly:
32
+ runs-on: ubuntu-latest
33
+ strategy:
34
+ matrix:
35
+ target:
36
+ - thumbv6m-none-eabi
37
+ - thumbv7m-none-eabi
38
+
39
+ steps:
40
+ - uses: actions/checkout@v2
41
+ - uses: actions-rs/toolchain@v1
42
+ with:
43
+ profile: minimal
44
+ toolchain: nightly
45
+ target: ${{ matrix.target }}
46
+ override: true
47
+ - uses: actions-rs/cargo@v1
48
49
+ command: check
50
+ args: --target=${{ matrix.target }} --examples --features allocator_api
0 commit comments