-
Notifications
You must be signed in to change notification settings - Fork 2
119 lines (93 loc) · 2.77 KB
/
ci.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Continuous Integration
on:
- push
- pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install Node.js
uses: actions/setup-node@v3
- name: Clone repo
uses: actions/checkout@v3
- name: Install yarn
run: npm i -g yarn
- name: Install dependencies
run: yarn install
- name: Check contracts are linted
run: yarn lint:check
- name: Add lint summary
run: |
echo '## Lint results' >> $GITHUB_STEP_SUMMARY
echo '✅ Passed' >> $GITHUB_STEP_SUMMARY
tests:
runs-on: ubuntu-latest
env:
ETH_RPC_URL: ${{secrets.ETH_RPC_URL}}
steps:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install Huff
uses: huff-language/huff-toolchain@v2
with:
version: nightly
- name: Install node
uses: actions/setup-node@v3
- name: Install yarn
run: npm i -g yarn
- name: Clone repo with submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: yarn install
- name: Show Foundry config
run: forge config --config-path=./contracts/foundry.toml
- name: Run forge and hardhat tests
run: exit 1
# run: yarn test:sol --fork-url=$ETH_RPC_URL
- name: Run typescript tests
run: yarn test:ts
- name: Add test summary
run: |
echo '## Test results' >> $GITHUB_STEP_SUMMARY
echo '✅ Passed' >> $GITHUB_STEP_SUMMARY
coverage:
name: Run Coverage Tests
runs-on: ubuntu-latest
steps:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Clone repo with submodules
uses: actions/checkout@v3
with:
submodules: recursive
- run: yarn coverage:sol --report=summary --silent > ./summary.md
- name: Add coverage summary
run: |
echo '## Coverage results' >> $GITHUB_STEP_SUMMARY
echo "$(cat ./summary.md)" >> $GITHUB_STEP_SUMMARY
- name: Coverage
run: |
# This generates contracts/lcov.info
yarn coverage:sol --report=lcov --silent
- name: Move lcov.info
run: mv contracts/lcov.info lcov.info
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: lcov.info
full-pass:
needs:
- 'tests'
- 'lint'
runs-on: ubuntu-latest
steps:
- name: Add summary
run: |
echo '## Summary' >> $GITHUB_STEP_SUMMARY
echo '✅ All passed' >> $GITHUB_STEP_SUMMARY