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 b06b012
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions .github/workflows/test.yml → .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: EVM Placeholder verification tests
name: run-tests

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

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


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

- name: Install node dependencies
run: |
set -xe
npm i
npm install
- name: Run tests
- name: Hadrhat tests
run: |
npx hardhat test
- name: Hadrhat deploy
run: |
set -eo pipefail
npx hardhat test
npx hardhat deploy
- name: Verification of all zkllvm proofs
run: |
npx hardhat verify-circuit-proof-all

0 comments on commit b06b012

Please sign in to comment.