build(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 #1503
Workflow file for this run
This file contains hidden or 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
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| inputs: | |
| SKIP_ALPINE_PROVIDER_TESTS: | |
| description: 'Skip alpine provider tests' | |
| required: false | |
| default: 'false' | |
| 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: debug | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| go-version: ["1.25", "1.26"] | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - uses: actions/setup-java@v5 # Needed for the Avro example | |
| with: | |
| distribution: 'zulu' | |
| java-version: '17' | |
| - 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 CGO_LDFLAGS / pact_ffi lib on PATH | |
| if: matrix.os == 'windows-latest' | |
| run: | | |
| "CGO_LDFLAGS=-L$env:TMP" >> $env:GITHUB_ENV | |
| "$env:TMP" >> $env:GITHUB_PATH | |
| - 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@v7 | |
| with: | |
| name: logs-${{ github.job }}-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.go-version }}-${{ matrix.os }}.zip | |
| path: ~/.pact/plugins/**/plugin.log | |
| if: ${{ always() }} | |
| test-containers: | |
| continue-on-error: ${{ matrix.experimental }} | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.os }}-${{ matrix.variant }}-${{ matrix.go-version }}-test-container | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, ubuntu-24.04-arm] | |
| go-version: ["1.25", "1.26"] | |
| variant: [debian] | |
| experimental: [false] | |
| include: | |
| - variant: alpine | |
| go-version: 1.25 | |
| experimental: true | |
| os: ubuntu-latest | |
| - variant: alpine | |
| go-version: 1.26 | |
| experimental: true | |
| os: ubuntu-latest | |
| - variant: alpine | |
| go-version: 1.25 | |
| experimental: true | |
| os: ubuntu-24.04-arm | |
| - variant: alpine | |
| go-version: 1.26 | |
| experimental: true | |
| os: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Test dockerfile | |
| run: | | |
| if [[ "${{ matrix.variant }}" == "alpine" ]]; then | |
| export SKIP_PROVIDER_TESTS=true | |
| if [[ "${{ github.event.inputs.SKIP_ALPINE_PROVIDER_TESTS }}" == "false" ]]; then | |
| export SKIP_PROVIDER_TESTS=false | |
| fi | |
| fi | |
| make docker_test_all | |
| env: | |
| GO_VERSION: ${{ matrix.go-version }} | |
| IMAGE_VARIANT: ${{ matrix.variant }} | |
| 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 |