chore: call actions/checkout before actions/setup-go to benefit from native cache #1328
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: Build 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}" | |
build_test: | |
needs: go-versions | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: ${{fromJson(needs.go-versions.outputs.versions)}} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install Go | |
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Build Test v3 | |
run: | | |
make build_test |