forked from pact-foundation/pact-go
-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (61 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
on: [push, pull_request, workflow_dispatch]
name: Test
env:
# PACT_BROKER_BASE_URL: https://testdemo.pactflow.io
# PACT_BROKER_TOKEN: ${{ secrets.PACT_BROKER_TOKEN }}
# REACT_APP_API_BASE_URL: http://localhost:8080
APP_SHA: ${{ github.sha }}
APP_REF: ${{ github.ref }}
LD_LIBRARY_PATH: /tmp
PACT_GO_LIB_DOWNLOAD_PATH: /tmp
LOG_LEVEL: info
# COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
strategy:
matrix:
go-version: [ # https://endoflife.date/go
# 1.17.x, # Ended 02 Aug 2022
# 1.18.x, # Ended 01 Feb 2023
1.19.x,
1.20.x,
1.21.x
]
os: [ubuntu-latest, macos-12, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- uses: actions/setup-java@v4 # Needed for the Avro example
with:
distribution: 'zulu'
java-version: '17'
- name: install Docker on Mac
if: runner.os == 'macOS'
run: |
brew install docker
colima start --runtime docker
- name: Test
run: APP_BRANCH=${APP_REF:11} DOCKER_GATEWAY_HOST=172.17.0.1 DOCKER_HOST_HTTP="http://172.17.0.1" make
# - name: Install goveralls
# run: go install github.com/mattn/goveralls@latest
# - name: Send coverage
# run: goveralls -coverprofile=coverage.txt -service=github -parallel
# - uses: actions/upload-artifact@v4
# with:
# name: logs-${{ github.job }}-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.go-version }}.zip
# path: ~/.pact/plugins/**/plugin.log
# if: ${{ always() }}
# finish:
# needs: test
# runs-on: ubuntu-latest
# steps:
# - name: Coveralls Finished
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# parallel-finished: true