Skip to content

Commit c533bae

Browse files
committed
Also run tests of api crate on CI
This is very important to ensure correct serialization/deserialization of config.
1 parent 3aef58c commit c533bae

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
pull_request:
66
schedule:
7-
- cron: '40 5 * * *' # every day at 5:40
7+
- cron: "40 5 * * *" # every day at 5:40
88

99
jobs:
1010
check:
@@ -53,7 +53,13 @@ jobs:
5353
- name: "Print QEMU Version"
5454
run: qemu-system-x86_64 --version
5555

56-
- name: Run `cargo test`
56+
- name: Run api tests
57+
uses: actions-rs/cargo@v1
58+
with:
59+
command: test
60+
args: -p bootloader_api
61+
62+
- name: Run integration tests
5763
uses: actions-rs/cargo@v1
5864
with:
5965
command: test

0 commit comments

Comments
 (0)