-
Notifications
You must be signed in to change notification settings - Fork 36
41 lines (39 loc) · 1.06 KB
/
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
name: test
on:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Check out repository code
uses: actions/checkout@v4
# Setup Golang
- name: 🐿 Setup Golang
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
# Test & coverage report creation
- name: Test & coverage report creation
run: go test -cover -mod=readonly ./x/...
# TODO Heighliner is currently broken
# interchaintest:
# runs-on: ubuntu-latest
# steps:
# # Checkout the repository
# - name: Check out repository code
# uses: actions/checkout@v4
# # Setup Golang
# - name: 🐿 Setup Golang
# uses: actions/setup-go@v4
# with:
# go-version-file: 'go.mod'
# # Setup heighliner
# - name: Setup heighliner
# run: make heighliner-setup
# # Run heighliner
# - name: Run heighliner
# run: make heighliner
# # Run interchaintest
# - name: Run interchaintest
# run: make interchaintest