Skip to content

Commit 731422e

Browse files
committed
Fix combined CI
1 parent 73def59 commit 731422e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
toolchain: ${{ matrix.rust }}
3030
override: true
3131
- name: Run tests
32-
run: cargo test --all
32+
run: cargo test --all --exclude cortex-m-rt
3333

3434
# FIXME: test on macOS and Windows

.github/workflows/rt-ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
# Nightly is only for reference and allowed to fail
1919
- rust: nightly
2020
experimental: true
21-
21+
defaults:
22+
run:
23+
working-directory: cortex-m-rt
2224
steps:
2325
- uses: actions/checkout@v2
2426
- uses: actions-rs/toolchain@v1
@@ -55,7 +57,9 @@ jobs:
5557
- macOS-latest
5658
- windows-latest
5759
runs-on: ${{ matrix.os }}
58-
60+
defaults:
61+
run:
62+
working-directory: cortex-m-rt
5963
steps:
6064
- uses: actions/checkout@v2
6165
- uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)