chore: fix golint errors / remove ci lib.go exclusion #248
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
log_level: | |
description: 'Log level' | |
type: choice | |
required: true | |
default: 'INFO' | |
options: | |
- 'INFO' | |
- 'DEBUG' | |
- 'TRACE' | |
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 }} | |
PACT_GO_LIB_DOWNLOAD_PATH: /tmp | |
PACT_LD_LIBRARY_PATH: /tmp | |
LOG_LEVEL: ${{ github.event.inputs.log_level || 'INFO' }} | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [ # https://endoflife.date/go | |
# 1.17.x, # Ended 02 Aug 2022 | |
# 1.18.x, # Ended 01 Feb 2023 | |
# 1.19.x, # Ended 06 Sep 2023 | |
# 1.20.x, # Ended 06 Feb 2024 | |
1.21.x, | |
1.22.x, | |
] | |
os: [ubuntu-latest, macos-12, macos-14, windows-latest] | |
cgo: [0,1] | |
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: "Set CGO_ENABLED: ${{ matrix.cgo }}" | |
if: matrix.os == 'windows-latest' | |
run: | | |
"CGO_ENABLED=${{ matrix.cgo }}" >> $env:GITHUB_ENV | |
- name: "Set CGO_ENABLED: ${{ matrix.cgo }}" | |
if: matrix.os != 'windows-latest' | |
run: | | |
echo "CGO_ENABLED=${{ matrix.cgo }}" >> $GITHUB_ENV | |
- if: matrix.os == 'macos-14' | |
run: brew install protobuf | |
- name: Test | |
if: matrix.os == 'ubuntu-latest' | |
run: APP_BRANCH=${APP_REF:11} DOCKER_GATEWAY_HOST=172.17.0.1 DOCKER_HOST_HTTP="http://172.17.0.1" make | |
- name: Set PACT_LD_LIBRARY_PATH | |
if: matrix.os == 'windows-latest' | |
run: | | |
"PACT_LD_LIBRARY_PATH=$env:TMP" >> $env:GITHUB_ENV | |
- name: Test (unit) | |
if: matrix.os != 'ubuntu-latest' | |
run: make test | |
- name: Test (pact) | |
if: matrix.os != 'ubuntu-latest' | |
run: make pact_local | |
- name: Install goveralls | |
if: matrix.os != 'windows-latest' | |
run: go install github.com/mattn/goveralls@latest | |
- name: Send coverage | |
if: matrix.os != 'windows-latest' | |
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 }}-${{ matrix.os }}-${{matrix.cgo}}.zip | |
path: ~/.pact/plugins/**/plugin.log | |
if: ${{ always() }} | |
test-containers: | |
runs-on: ubuntu-latest | |
name: ${{ matrix.go-version }}-test-container-cgo-${{ matrix.cgo }} | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: ["1.21", "1.22"] | |
cgo: [0,1] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test dockerfile | |
run: make docker_test_all | |
env: | |
GO_VERSION: ${{ matrix.go-version }} | |
CGO_ENABLED: ${{ matrix.cgo }} | |
finish: | |
needs: [test,test-containers] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@main | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |