Skip to content

Commit 9cc8ae3

Browse files
committed
Add nightly CI
1 parent 2018b17 commit 9cc8ae3

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
name: Continuous integration
99

1010
jobs:
11-
ci:
11+
ci-stable:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
@@ -28,3 +28,23 @@ jobs:
2828
with:
2929
command: check
3030
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+
with:
49+
command: check
50+
args: --target=${{ matrix.target }} --examples --features allocator_api

0 commit comments

Comments
 (0)