-
Notifications
You must be signed in to change notification settings - Fork 3
49 lines (46 loc) · 1.34 KB
/
Copy pathtest.yml
File metadata and controls
49 lines (46 loc) · 1.34 KB
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
name: test
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.13.x
- run: make test
acctest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.13.x
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go
- name: Bring up kafka + zk
run: docker-compose up -d
- name: "Run tests"
run: |
export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
go install github.com/jstemmer/go-junit-report
trap "go-junit-report < go-test.out > go-test-report.xml" EXIT
make testacc | tee go-test.out
- name: Upload test results
uses: actions/upload-artifact@v1
with:
name: acc-test-results.xml
path: go-test-report.xml
# Use always() to always run this step to publish test results when there are test failures
if: always()