Skip to content

Commit

Permalink
fix(ci): Fix codecov_src_go by specifying go version (magma#12305)
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Voisey <cameron.voisey@tngtech.com>
  • Loading branch information
voisey authored and emakeev committed Aug 5, 2022
1 parent c6e5490 commit 84bfe1a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/golang-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,13 @@ jobs:
codecov_src_go:
needs: pre_job_src_go_determinator
if: ${{ needs.pre_job_src_go_determinator.outputs.should_not_skip == 'true' }}
strategy:
matrix:
go-version: [1.18.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
Expand Down

0 comments on commit 84bfe1a

Please sign in to comment.