From cb8d108af5193817901ee0f15adfa1093318486c Mon Sep 17 00:00:00 2001 From: Salvatore Ingala <6681844+bigspider@users.noreply.github.com> Date: Thu, 8 Aug 2024 15:54:00 +0200 Subject: [PATCH] Fixup --- .github/workflows/ci.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5ad9695..c313a64 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,7 @@ name: Run unit tests on: push: branches: - master + - master pull_request: workflow_dispatch: inputs: @@ -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 @@ -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 @@ -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 @@ -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 @@ -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