forked from althea-net/cosmos-gravity-bridge
-
Notifications
You must be signed in to change notification settings - Fork 10
54 lines (52 loc) · 1.41 KB
/
integration-tests.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
name: Integration tests
on:
push:
branches: [main]
pull_request:
jobs:
# this is the standard test, which is the only one without `skip-save: true` so we don't waste a
# lot of resources saving the same thing for every test
happy-path-geth:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run all up happy-path test
run: tests/all-up-test.sh
# these other tests before the matrix have special requirements
happy-path-hardhat:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run all up happy-path test
run: tests/all-up-test.sh
env:
HARDHAT: True
all-up-test-matrix:
runs-on: ubuntu-latest
strategy:
matrix:
name:
[
VALIDATOR_OUT,
VALSET_STRESS,
BATCH_STRESS,
REMOTE_STRESS_FOR_CI,
HAPPY_PATH_V2,
ORCHESTRATOR_KEYS,
VALSET_REWARDS,
EVIDENCE,
TXCANCEL,
INVALID_EVENTS,
UNHALT_BRIDGE,
PAUSE_BRIDGE,
DEPOSIT_OVERFLOW,
ETHEREUM_BLACKLIST,
AIRDROP_PROPOSAL,
SIGNATURE_SLASHING,
SLASHING_DELEGATION,
IBC_METADATA,
]
steps:
- uses: actions/checkout@v2
- name: Run all up ${{ matrix.name }} test
run: tests/all-up-test.sh ${{ matrix.name }}