Skip to content

Commit

Permalink
Run tests workflow reviewed.
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaskov committed Aug 15, 2023
1 parent 4c5ee9b commit 9d72c65
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions .github/workflows/test.yml → .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
name: EVM Placeholder verification tests
name: run-tests

on:
push:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '.clang-format'
- '.gitignore'
- 'README.md'
pull_request:
paths-ignore:
- 'docs/**'
- '.clang-format'
- '.gitignore'
- 'README.md'

concurrency:
group: ${{
Expand All @@ -15,7 +25,7 @@ concurrency:


jobs:
test:
run-tests:
runs-on: [ ubuntu-22.04 ]
steps:
- uses: actions/checkout@v3
Expand All @@ -25,12 +35,14 @@ jobs:

- name: Install node dependencies
run: |
set -xe
npm i
npm install
- name: Run tests
- name: Hadrhat tests
run: |
set -eo pipefail
npx hardhat test
npx hardhat test
- name: Hadrhat deploy
npx hardhat deploy

- name: Verification of all zkllvm proofs
npx hardhat verify-circuit-proof-all

0 comments on commit 9d72c65

Please sign in to comment.