Skip to content

Commit

Permalink
fix(github): add go setup step to CI flows
Browse files Browse the repository at this point in the history
This is necessary as macos-latest image does not appear to come with go
installed by default.

Signed-off-by: Sergei Trofimov <[email protected]>
  • Loading branch information
setrofim committed Jun 3, 2024
1 parent 507d79c commit 3daa7ad
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/setup-go@v3
with:
go-version: "1.19"
- name: Checkout code
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 3daa7ad

Please sign in to comment.