-
Notifications
You must be signed in to change notification settings - Fork 40
72 lines (61 loc) · 1.68 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Tests
on:
pull_request:
push:
branches:
- master
- release/**
jobs:
cleanup-runs:
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'"
forge-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: onbjerg/foundry-toolchain@v1
with:
version: nightly
- name: Check formatting
working-directory: ./
run: forge fmt --check
- name: Run forge test
working-directory: ./
run: forge test
go-wrapper-check:
runs-on: ubuntu-latest
needs: forge-test
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: "1.21.1"
- name: Install Foundry
uses: onbjerg/foundry-toolchain@v1
with:
version: nightly
- name: Install Go Ethereum devtools
working-directory: ./
run: |
git clone --depth 1 --branch v1.12.0 https://github.com/ethereum/go-ethereum.git
cd go-ethereum
make devtools
- name: Make Go wrapper
working-directory: ./
run: make
- name: Check Go wrapper match
run: |
if [ "$(git diff --ignore-space-at-eol wrappers | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi