forked from cosmos/relayer
-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (44 loc) · 1.04 KB
/
relay-codecov.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
name: Test and coverage
on:
push:
tags:
- '**'
# branches:
# - '**'
pull_request:
branches:
- main
jobs:
coverage:
name: coverage
runs-on: ubuntu-latest
steps:
# Install and setup go
- name: Set up Go 1.19
uses: actions/setup-go@v2
with:
go-version: 1.19
# setup gopath
- name: Set PATH
run: |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
# checkout relayer
- name: checkout relayer
uses: actions/checkout@v2
# setup cache
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
# unit tests
- name: run unit tests
run: make test
continue-on-error: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out