-
Notifications
You must be signed in to change notification settings - Fork 426
71 lines (57 loc) · 1.55 KB
/
chain_test.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: "Test EmpowerChain"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
paths:
- 'chain/**'
jobs:
test:
name: Test EmpowerChain
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: earthly/actions-setup@v1
with:
version: 0.6.30
- run: earthly --ci --output -P +test-with-coverage
working-directory: ./chain
- uses: codecov/codecov-action@v3
if: ${{ github.actor != 'dependabot[bot]' }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./chain
flags: chain
fail_ci_if_error: true
smoke-test:
name: Smoke tests EmpowerChain
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: earthly/actions-setup@v1
with:
version: 0.6.30
- run: earthly --ci -P +smoketest
working-directory: ./chain
non-determinism-test:
name: Simulation non-determinism tests EmpowerChain
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: earthly/actions-setup@v1
with:
version: 0.6.30
- run: earthly --ci -P +test-sim-nondeterminism
working-directory: ./chain
ibc-conformance-test:
name: Run interchaintest IBC conformace test suite
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: earthly/actions-setup@v1
with:
version: 0.6.30
- run: earthly --ci --output -P +ibc-conformance-test
working-directory: ./chain