From e9a3d0ec3f3987b86ce0bf65587493dbc13deccf Mon Sep 17 00:00:00 2001 From: Anton Baliasnikov Date: Thu, 27 Jun 2024 20:54:12 +0100 Subject: [PATCH] test --- .github/actions/cli-tests/action.yml | 4 ---- .github/workflows/test.yaml | 12 ++++++------ 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/actions/cli-tests/action.yml b/.github/actions/cli-tests/action.yml index dc5de540..200b17e3 100644 --- a/.github/actions/cli-tests/action.yml +++ b/.github/actions/cli-tests/action.yml @@ -53,10 +53,6 @@ runs: working-directory: cli-tests run: | npm install - which solc - which zksolc - solc --version - zksolc --version npx jest --ci --reporters=default --reporters=jest-junit - name: Upload results Linux diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e50941b6..a667c3a4 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -93,14 +93,14 @@ jobs: - name: Install solc compiler uses: ./.github/actions/install-solc - - name: Run tests - if: steps.changed-files-yaml.outputs.cli_tests_only_changed != 'true' - uses: ./.github/actions/unit-tests - with: - target: ${{ matrix.target || '' }} - - name: Run CLI tests uses: ./.github/actions/cli-tests with: use-prebuilt-zksolc: ${{ steps.changed-files-yaml.outputs.cli_tests_only_changed }} zksolc-version: ${{ github.event.inputs.zksolc-version }} + + - name: Run tests + if: steps.changed-files-yaml.outputs.cli_tests_only_changed != 'true' + uses: ./.github/actions/unit-tests + with: + target: ${{ matrix.target || '' }}