Skip to content

Commit fb983d5

Browse files
committed
Added bootloader-tool preliminary to CI
1 parent b58702d commit fb983d5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/check.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jobs:
4444
- name: cargo fmt --check (examples)
4545
run: cargo fmt --check
4646
working-directory: "./examples/rt685s"
47+
- name: cargo fmt --check (bootloader-tool)
48+
run: cargo fmt --check
49+
working-directory: "./bootloader-tool"
4750

4851
clippy:
4952
runs-on: ubuntu-latest
@@ -82,6 +85,13 @@ jobs:
8285
clippy_flags: -- -F clippy::suspicious -D clippy::correctness -F clippy::perf -F clippy::style
8386
github_token: ${{ secrets.GITHUB_TOKEN }}
8487
workdir: "./examples/rt685s"
88+
- name: cargo clippy (bootloader-tool)
89+
uses: giraffate/clippy-action@v1
90+
with:
91+
reporter: "github-pr-check"
92+
clippy_flags: -- -D clippy::suspicious -D clippy::correctness -D clippy::perf -D clippy::style
93+
github_token: ${{ secrets.GITHUB_TOKEN }}
94+
workdir: "./bootloader-tool"
8595

8696
# Enable once we have a released crate
8797
# semver:
@@ -222,3 +232,6 @@ jobs:
222232
- name: cargo +${{ matrix.msrv }} check (examples)
223233
run: cargo check
224234
working-directory: "./examples/rt685s"
235+
- name: cargo +${{ matrix.msrv }} check (bootloader-tool)
236+
run: cargo check
237+
working-directory: "./bootloader-tool"

0 commit comments

Comments
 (0)