Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/add cargo ledger #103

Merged
merged 6 commits into from
Dec 11, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
run clippy nightly for sdk packages only
  • Loading branch information
yogh333 committed Dec 8, 2023
commit f9a13ae9649fa4c87b8cd8eb1b254de01009a38e
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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: