Skip to content

Commit 2a33db9

Browse files
committed
feat: helpers and actions
1 parent bef0240 commit 2a33db9

32 files changed

+2825
-164
lines changed

.github/CODEOWNERS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Global rule:
2+
* @xmtp/backend
3+
*.md @xmtp/documentation

.github/workflows/coverage.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Forge Coverage
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
permissions: write-all
10+
11+
jobs:
12+
check:
13+
name: Code Coverage
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
submodules: recursive
19+
20+
- name: Install Foundry
21+
uses: foundry-rs/foundry-toolchain@v1
22+
23+
- name: Install lcov
24+
uses: hrishikesh-kadam/setup-lcov@v1
25+
26+
- name: Run coverage
27+
id: coverage
28+
env:
29+
MNEMONIC: ${{ secrets.MNEMONIC_FOR_TESTS }}
30+
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
31+
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
32+
run: forge coverage --no-match-coverage "(script|test)" --gas-limit 2000000000 --report lcov && lcov --extract lcov.info --rc lcov_branch_coverage=1 --rc derive_function_end_line=0 -o lcov.info 'src/*' && genhtml lcov.info --rc branch_coverage=1 --rc derive_function_end_line=0 -o coverage
33+
34+
- name: Report code coverage
35+
uses: zgosalvez/github-actions-report-lcov@v3
36+
with:
37+
coverage-files: lcov.info
38+
artifact-name: code-coverage-report
39+
minimum-coverage: 95
40+
github-token: ${{ secrets.GITHUB_TOKEN }}
41+
update-comment: true

.github/workflows/gas.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Forge Tests Gas Report
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
permissions: write-all
10+
11+
jobs:
12+
check:
13+
name: Gas report
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
submodules: recursive
19+
20+
- name: Install Foundry
21+
uses: foundry-rs/foundry-toolchain@v1
22+
23+
- name: Run Forge tests with gas report
24+
env:
25+
# make fuzzing semi-deterministic to avoid noisy gas cost estimation
26+
# due to non-deterministic fuzzing (but still use pseudo-random fuzzing seeds)
27+
FOUNDRY_FUZZ_SEED: 0x${{ github.event.pull_request.base.sha || github.sha }}
28+
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
29+
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
30+
run: forge test --gas-report --gas-limit 2000000000 > gasreport.ansi
31+
32+
- name: Compare gas reports
33+
uses: Rubilmax/foundry-gas-diff@v3.16
34+
id: gas_diff
35+
36+
- name: Add gas diff to sticky comment
37+
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target'
38+
uses: marocchino/sticky-pull-request-comment@v2
39+
with:
40+
# delete the comment in case changes no longer impact gas costs
41+
delete: ${{ !steps.gas_diff.outputs.markdown }}
42+
message: ${{ steps.gas_diff.outputs.markdown }}

0 commit comments

Comments
 (0)