Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
bigspider committed Aug 8, 2024
1 parent 0685abc commit cb8d108
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Run unit tests
on:
push:
branches:
master
- master
pull_request:
workflow_dispatch:
inputs:
Expand All @@ -13,9 +13,9 @@ on:
env:
CARGO_TERM_COLOR: always


# Currently only testing native compilation and tests

# Currently only testing native compilation and tests
jobs:
test_app_sdk:
name: Run V-App SDK tests
Expand All @@ -25,8 +25,8 @@ jobs:
steps:
- name: Install native target
run: |
rustup target add x86_64-unknown-linux-gnu
rustup toolchain install nightly
rustup target add x86_64-unknown-linux-gnu --toolchain nightly
- name: Clone
uses: actions/checkout@v4
- name: Unit tests
Expand All @@ -42,8 +42,8 @@ jobs:
steps:
- name: Install native target
run: |
rustup target add x86_64-unknown-linux-gnu
rustup toolchain install nightly
rustup target add x86_64-unknown-linux-gnu --toolchain nightly
- name: Clone
uses: actions/checkout@v4
- name: Unit tests
Expand All @@ -59,8 +59,8 @@ jobs:
steps:
- name: Install native target
run: |
rustup target add x86_64-unknown-linux-gnu
rustup toolchain install nightly
rustup target add x86_64-unknown-linux-gnu --toolchain nightly
- name: Clone
uses: actions/checkout@v4
- name: Unit tests
Expand All @@ -69,15 +69,15 @@ jobs:
cargo +nightly test --target x86_64-unknown-linux-gnu
test_vnd_test_app_client:
name: Run vnd-test app tests
name: Run vnd-test app client tests
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-dev-tools:latest
steps:
- name: Install native target
run: |
rustup target add x86_64-unknown-linux-gnu
rustup toolchain install nightly
rustup target add x86_64-unknown-linux-gnu --toolchain nightly
- name: Clone
uses: actions/checkout@v4
- name: Unit tests
Expand Down

0 comments on commit cb8d108

Please sign in to comment.