[v4] Implements v4 for v4.24.0-alpha #1264
Workflow file for this run
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] | ||
name: Test | ||
permissions: | ||
contents: read | ||
jobs: | ||
go-versions: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
versions: ${{ steps.versions.outputs.value }} | ||
steps: | ||
- id: versions | ||
run: | | ||
versions=$(curl -s 'https://go.dev/dl/?mode=json' | jq -c 'map(.version[2:])') | ||
echo "::set-output name=value::${versions}" | ||
test: | ||
needs: go-versions | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go-version: ${{fromJson(needs.go-versions.outputs.versions)}} | ||
os: [ubuntu-22.04, ubuntu-20.04, windows-2022, windows-2019, macos-11, macos-12] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
- name: Checkout code | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- id: go-env | ||
run: | | ||
echo "::set-output name=cache::$(go env GOCACHE)" | ||
echo "::set-output name=mod-cache::$(go env GOMODCACHE)" | ||
- name: Cache go modules | ||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 | ||
with: | ||
path: | | ||
${{ steps.go-env.outputs.cache }} | ||
${{ steps.go-env.outputs.mod-cache }} | ||
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | ||
restore-keys: ${{ runner.os }}-go- | ||
- name: Test | ||
run: | | ||
go test -coverprofile='coverage.out' -covermode=atomic ./... | ||
- name: Send coverage to Coveralls (parallel) | ||
uses: coverallsapp/github-action@v1 | ||
with: | ||
parallel: true | ||
flag-name: run-$ | ||
finish: | ||
needs: go-versions | ||
if: $ | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Close parallel build | ||
uses: coverallsapp/github-action@v1 | ||
with: | ||
parallel-finished: true |