-
Notifications
You must be signed in to change notification settings - Fork 17
53 lines (45 loc) · 1.42 KB
/
base-sepolia-integration.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
name: Base Sepolia
on: [pull_request]
env:
BASE_RPC_URL: ${{secrets.BASE_SEPOLIA_RPC_URL}}
OP_RPC_URL: ${{secrets.OP_SEPOLIA_RPC_URL}}
MOONBEAM_RPC_URL: ${{secrets.MOONBASE_RPC_URL}}
PRIMARY_FORK_ID: 1
FOUNDRY_PROFILE: ci
jobs:
live-system-integration-tests:
name: Live System Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Environment
uses: ./.github/actions
- name: Live System Integration Tests
uses: nick-fields/retry@v3
with:
polling_interval_seconds: 30
retry_wait_seconds: 60
timeout_minutes: 30
max_attempts: 3
command: time forge test --match-contract BaseSepoliaTest -vvv --ffi --rpc-url base
xwell-integration-tests:
name: xWell Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Environment
uses: ./.github/actions
- name: Run Integration Tests
uses: nick-fields/retry@v3
with:
polling_interval_seconds: 30
retry_wait_seconds: 60
timeout_minutes: 30
max_attempts: 3
command: time forge test --match-contract 'xWellIntegrationTest' --fork-url base -vvv --ffi