-
Notifications
You must be signed in to change notification settings - Fork 16
50 lines (40 loc) · 1.21 KB
/
run-smc-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Smart contracts test
on:
push:
paths:
- 'contracts/**'
- 'testdata/**'
- 'prover/**'
jobs:
run-contract-tests:
runs-on: besu-arm64
name: Run smart contracts tests
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.22.x
- 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
solidity-format-check:
runs-on: besu-arm64
name: Solidity format check
steps:
- uses: actions/checkout@v3
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