Change Go Lang minimal version to 1.25 - fix Vulnerabilities. (#182) #326
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: Tests | |
| on: | |
| push: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| PAM_PUBLISH_KEY: ${{ secrets.PAM_PUBLISH_KEY }} | |
| PAM_SUBSCRIBE_KEY: ${{ secrets.PAM_SUBSCRIBE_KEY }} | |
| PAM_SECRET_KEY: ${{ secrets.PAM_SECRET_KEY }} | |
| PUBLISH_KEY: ${{ secrets.PUBLISH_KEY }} | |
| SUBSCRIBE_KEY: ${{ secrets.SUBSCRIBE_KEY}} | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| tests: | |
| name: Integration and Unit tests | |
| runs-on: | |
| group: organization/Default | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GH_TOKEN }} | |
| - name: Checkout actions | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: pubnub/client-engineering-deployment-tools | |
| ref: v1 | |
| token: ${{ secrets.GH_TOKEN }} | |
| path: .github/.release/actions | |
| - name: Setup Go 1.25 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.25 | |
| cache: true | |
| - name: Install gotestsum | |
| run: | | |
| go install gotest.tools/gotestsum@v1.13.0 | |
| gotestsum --version | |
| - name: Build and run tests | |
| run: bash ./scripts/run-tests-gotestsum.sh -mod=mod testname | |
| timeout-minutes: 15 | |
| - name: Cancel workflow runs for commit on error | |
| if: failure() | |
| uses: ./.github/.release/actions/actions/utils/fast-jobs-failure | |
| acceptance-tests: | |
| name: Acceptance tests | |
| runs-on: | |
| group: organization/Default | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@v4 | |
| - name: Checkout mock-server action | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: pubnub/client-engineering-deployment-tools | |
| ref: v1 | |
| token: ${{ secrets.GH_TOKEN }} | |
| path: .github/.release/actions | |
| - name: Run mock server action | |
| uses: ./.github/.release/actions/actions/mock-server | |
| with: | |
| token: ${{ secrets.GH_TOKEN }} | |
| - name: Setup Go 1.25 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.25 | |
| cache: true | |
| - name: Run acceptance tests (optional) | |
| run: | | |
| cd tests/contract | |
| go test -path ../../sdk-specifications/features -tagsFilter "~@skip && ~@na=go && @beta" -format "junit:beta.xml" | |
| continue-on-error: true | |
| - name: Run acceptance tests (required) | |
| run: | | |
| cd tests/contract | |
| go test -path ../../sdk-specifications/features -tagsFilter "~@skip && ~@na=go && ~@beta" -format "junit:main.xml" | |
| - name: Expose acceptance tests reports | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: acceptance-test-reports | |
| path: | | |
| ./tests/contract/beta.xml | |
| ./tests/contract/main.xml | |
| retention-days: 7 | |
| - name: Cancel workflow runs for commit on error | |
| if: failure() | |
| uses: ./.github/.release/actions/actions/utils/fast-jobs-failure | |
| all-tests: | |
| name: Tests | |
| needs: [tests, acceptance-tests] | |
| runs-on: | |
| group: organization/Default | |
| steps: | |
| - name: Tests summary | |
| run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed" |