Skip to content

Commit

Permalink
run clippy nightly for sdk packages only
Browse files Browse the repository at this point in the history
  • Loading branch information
yogh333 committed Dec 8, 2023
1 parent 282b934 commit f9a13ae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,24 @@ jobs:
strategy:
matrix:
target: ["nanos", "nanox", "nanosplus"]
package: [include_gif, testmacro, ledger_secure_sdk_sys, ledger_device_sdk]
steps:
- name: Clone
uses: actions/checkout@v4
- name: Cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --target ${{ matrix.target }}
args: -p ${{ matrix.package }} --target ${{ matrix.target }}

clippy-cargo-ledger:
name: Run static analysis for cargo-ledger
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-dev-tools:latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Cargo clippy for cargo-ledger
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit f9a13ae

Please sign in to comment.