-
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 843 Bytes
/
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
name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- uses: brokeyourbike/go-mockery-action@v0.1
with:
mockery-version: '2.42.0'
- run: make mock
- run: go build -v ./...
- run: go test -race -covermode=atomic -coverprofile=coverage.out -v ./...
- uses: paambaati/codeclimate-action@v5
continue-on-error: true
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_TOKEN }}
with:
prefix: 'github.com/brokeyourbike/clearbank-api-client-go'
coverageLocations: ./coverage.out:gocov
- uses: codecov/codecov-action@v3
continue-on-error: true