-
Notifications
You must be signed in to change notification settings - Fork 6
102 lines (83 loc) · 2.76 KB
/
test.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: Seaport Test CI
on:
push:
branches: [main, 1.*, 2.*]
tags: ["*"]
pull_request:
types: [opened, reopened, synchronize]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
forge:
name: Run Forge Tests (via_ir = true; fuzz_runs = 5000)
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install forge dependencies
run: forge install
- name: Precompile reference using 0.8.13 and via-ir=false
run: FOUNDRY_PROFILE=reference forge build
- name: Precompile optimized using 0.8.17 and via-ir=true
run: FOUNDRY_PROFILE=optimized forge build
- name: Run tests
run: FOUNDRY_PROFILE=test forge test -vvv
- name: Lint
run: |
forge fmt
pwd
if [[ `git diff --exit-code` ]]; then
git config --local user.name 'GitHub Actions Bot'
git config --local user.email '<>'
git add .
git commit -m "Github Actions automatically updated formatting with forge fmt"
COMMIT_HASH=$(git rev-parse HEAD)
echo "# Github Actions automatically updated formatting with forge fmt\n$COMMIT_HASH" >> .git-blame-ignore-revs
git add .git-blame-ignore-revs
git commit -m "Updated .git-blame-ignore-revs with commit $COMMIT_HASH"
BRANCH_NAME=$(git symbolic-ref --short HEAD)
git push origin $BRANCH_NAME
fi
id: update
forge-offerers:
name: Run Contract Offerer Forge Tests (via_ir = false; fuzz_runs = 1000)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install forge dependencies
run: forge install
- name: Run tests
run: FOUNDRY_PROFILE=offerers forge test -vvv
forge-coverage:
name: Run Forge Coverage report on tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install forge dependencies
run: forge install
- name: Run coverage with lcov output
run: SEAPORT_COVERAGE=true forge coverage --report lcov
- uses: codecov/codecov-action@v3
with:
files: ./lcov.info
flags: foundry