-
Notifications
You must be signed in to change notification settings - Fork 3
61 lines (53 loc) · 1.63 KB
/
ci.yml
File metadata and controls
61 lines (53 loc) · 1.63 KB
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
name: "CI"
concurrency:
cancel-in-progress: true
group: ${{github.workflow}}-${{github.ref}}
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
- "staging"
jobs:
lint:
uses: "sablier-labs/gha-utils/.github/workflows/full-check.yml@main"
build:
uses: "sablier-labs/gha-utils/.github/workflows/forge-build.yml@main"
test-bulloak:
needs: ["build"]
if: needs.build.outputs.cache-status != 'primary'
uses: "sablier-labs/gha-utils/.github/workflows/bulloak-check.yml@main"
with:
skip-modifiers: true
test-dir: "tests"
test-integration:
needs: ["build"]
if: needs.build.outputs.cache-status != 'primary'
uses: "sablier-labs/gha-utils/.github/workflows/forge-test.yml@main"
with:
foundry-fuzz-runs: 2000
foundry-profile: "test-optimized"
match-path: "tests/integration/**/*.sol"
name: "Integration tests"
test-fork:
needs: ["build"]
if: needs.build.outputs.cache-status != 'primary'
secrets:
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
ROUTEMESH_API_KEY: ${{ secrets.ROUTEMESH_API_KEY }}
uses: "sablier-labs/gha-utils/.github/workflows/forge-test.yml@main"
with:
foundry-fuzz-runs: 20
foundry-profile: "test-optimized"
match-path: "tests/fork/**/*.sol"
name: "Fork tests"
coverage:
needs: ["build"]
if: needs.build.outputs.cache-status != 'primary'
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
uses: "sablier-labs/gha-utils/.github/workflows/forge-coverage.yml@main"
with:
match-path: "tests/integration/**/*.sol"
via-ir-minimum: true