-
Notifications
You must be signed in to change notification settings - Fork 3
87 lines (71 loc) · 2.03 KB
/
foundry.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
name: foundry
env:
API_KEY_ALCHEMY: ${{ secrets.API_KEY_ALCHEMY }}
FOUNDRY_PROFILE: "ci"
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
jobs:
lint:
name: "lint"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Set up environment"
uses: ./.github/setup
- name: "Lint the code"
run: "bun run lint:sol"
- name: "Add lint summary"
run: |
echo "## Lint result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
build:
name: "build"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Set up environment"
uses: ./.github/setup
- name: "Build the contracts and print their size"
run: "forge build --sizes"
- name: "Add build summary"
run: |
echo "## Build result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
test:
name: "test"
needs: ["lint", "build"]
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Set up environment"
uses: ./.github/setup
- name: "Show the Foundry config"
run: "forge config"
- name: "Generate a fuzz seed that changes weekly to avoid burning through RPC allowance"
run: >
echo "FOUNDRY_FUZZ_SEED=$(
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 604800))
)" >> $GITHUB_ENV
- name: "Run the tests"
run: "forge test"
- name: "Add test summary"
run: |
echo "## Tests result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
coverage:
name: "coverage"
needs: ["test"]
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "Set up environment"
uses: ./.github/setup
- name: "Run coverage"
run: "bash scripts/checks/coverage.sh"
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}