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

Manage dependencies versions in Cargo.lock #112

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
22 changes: 1 addition & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ jobs:
steps:
- name: Clone
uses: actions/checkout@v4
- name: Cargo update
uses: actions-rs/cargo@v1
with:
command: update
args: -p [email protected] --precise 0.5.5
- name: Cargo clippy
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -77,11 +72,6 @@ jobs:
steps:
- name: Clone
uses: actions/checkout@v4
- name: Cargo update
uses: actions-rs/cargo@v1
with:
command: update
args: -p [email protected] --precise 0.5.5
- name: Cargo build
uses: actions-rs/cargo@v1
with:
Expand All @@ -96,11 +86,6 @@ jobs:
steps:
- name: Clone
uses: actions/checkout@v4
- name: Cargo update
uses: actions-rs/cargo@v1
with:
command: update
args: -p [email protected] --precise 0.5.5
- name: Cargo build
uses: actions-rs/cargo@v1
with:
Expand All @@ -119,13 +104,8 @@ jobs:
steps:
- name: Clone
uses: actions/checkout@v4
- name: Cargo update
uses: actions-rs/cargo@v1
with:
command: update
args: -p [email protected] --precise 0.5.5
- name: Unit tests
uses: actions-rs/cargo@v1
with:
command: test
args: -p ledger_device_sdk --target ${{ matrix.target }} --features speculos
args: -p ledger_device_sdk --target ${{ matrix.target }} --features speculos
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Rust
/target
Cargo.lock

# Editors
.idea/
Expand Down
Loading
Loading