We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aef58c commit c533baeCopy full SHA for c533bae
1 file changed
.github/workflows/ci.yml
@@ -4,7 +4,7 @@ on:
4
push:
5
pull_request:
6
schedule:
7
- - cron: '40 5 * * *' # every day at 5:40
+ - cron: "40 5 * * *" # every day at 5:40
8
9
jobs:
10
check:
@@ -53,7 +53,13 @@ jobs:
53
- name: "Print QEMU Version"
54
run: qemu-system-x86_64 --version
55
56
- - name: Run `cargo test`
+ - 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
63
uses: actions-rs/cargo@v1
64
with:
65
command: test
0 commit comments