-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (49 loc) · 1.8 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
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: onbjerg/foundry-toolchain@v1
with:
version: nightly
- name: Run forge fmt
run: forge fmt --check
test:
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: Run CASH deployment script
run: FOUNDRY_PROFILE=optimized CrossMarginOwner=0x1804c8AB1F12E6bbf3894d4083f33e07309d1f38 GrappaProxy=0x0000000000000000000000000000000000000001 GrappaOptionToken=0x0000000000000000000000000000000000000002 CrossMarginCashOracle=0x0000000000000000000000000000000000001234 forge script script/deploy-launch-cash.sol
- name: Run PHYSICAL deployment script
run: FOUNDRY_PROFILE=optimized CrossMarginOwner=0x1804c8AB1F12E6bbf3894d4083f33e07309d1f38 PomaceProxy=0x0000000000000000000000000000000000000001 PomaceOptionToken=0x0000000000000000000000000000000000000002 CrossMarginPhysicalOracle=0x0000000000000000000000000000000000004321 forge script script/deploy-launch-physical.sol
- name: Run tests
run: forge test --gas-report
- name: Run Coverage
run: forge coverage --report lcov
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: .
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./lcov.info
name: cross-margin-engine-coverage
verbose: true