mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
* forge build working * poc done * commit * did lint command * remove caret from hardhat-foundry * add foundry installation to run-smc-tests.yml * update run-smc-tests.yml
84 lines
2.1 KiB
YAML
84 lines
2.1 KiB
YAML
name: Smart contracts test
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'contracts/**'
|
|
- 'testdata/**'
|
|
- 'prover/**'
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'contracts/**'
|
|
- 'testdata/**'
|
|
- 'prover/**'
|
|
|
|
env:
|
|
GOPROXY: "https://proxy.golang.org"
|
|
|
|
jobs:
|
|
run-contract-tests:
|
|
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
|
name: Run smart contracts tests
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- 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
|
|
|
|
# Required for hardhat commands due to @nomicfoundation/hardhat-foundry package
|
|
- name: Install Foundry
|
|
uses: foundry-rs/foundry-toolchain@v1
|
|
|
|
- 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-20.04, X64, small]
|
|
name: Solidity format check
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup nodejs environment
|
|
uses: ./.github/actions/setup-nodejs
|
|
|
|
- name: Check Solidity formatting
|
|
run: pnpm -F contracts run lint:sol
|