Skip to content

Merge branch 'main' into 3782 #384

Merge branch 'main' into 3782

Merge branch 'main' into 3782 #384

Workflow file for this run

name: Smart contracts test
on:
push:
paths:
- 'contracts/**'
- 'testdata/**'
- 'prover/**'
env:
GOPROXY: "https://proxy.golang.org"
jobs:
run-contract-tests:
runs-on: [self-hosted, ubuntu-22.04, X64, small]
name: Run smart contracts tests
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.23.x
cache: false
- uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-go-${{ hashFiles('prover/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Setup nodejs environment
uses: ./.github/actions/setup-nodejs
- name: Check JS formatting
run: pnpm -F contracts run lint:ts
- name: Compile kzg.node
run: npx node-gyp --directory=contracts/node_modules/c-kzg rebuild # explicitly running rebuild to get the .node file
- name: Run smart contracts tests and generate coverage report
run: pnpm -F contracts run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./contracts/coverage/coverage-final.json
flags: hardhat
os: linux
name: codecov-contracts
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
solidity-format-check:
runs-on: [self-hosted, ubuntu-22.04, X64, small]
name: Solidity format check
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Setup nodejs environment
uses: ./.github/actions/setup-nodejs
- name: Check Solidity formatting
run: pnpm -F contracts run lint:sol