Skip to content

Commit bedbc41

Browse files
authored
Merge pull request #357 from rust-embedded/improve-ci
`riscv`: Run tests on CI
2 parents 31e793e + 1c72125 commit bedbc41

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/riscv.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Build (all features)
4141
run: cargo build --package riscv --target ${{ matrix.target }} --all-features
4242

43-
# On MacOS, Ubuntu, and Windows, we at least make sure that the crate builds and links.
43+
# On MacOS, Ubuntu, and Windows, we run tests.
4444
build-others:
4545
strategy:
4646
matrix:
@@ -49,10 +49,10 @@ jobs:
4949
steps:
5050
- uses: actions/checkout@v3
5151
- uses: dtolnay/rust-toolchain@stable
52-
- name: Build (no features)
53-
run: cargo build --package riscv
54-
- name: Build (all features)
55-
run: cargo build --package riscv --all-features
52+
- name: Test (no features)
53+
run: cargo test --package riscv
54+
- name: Test (all features)
55+
run: cargo test --package riscv --all-features
5656

5757
# Job to check that all the builds succeeded
5858
build-check:

0 commit comments

Comments
 (0)