From 59f0aa3146c8786543373eb73d69425cfdaaa667 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Fri, 31 May 2024 13:45:49 +0100 Subject: [PATCH] fix(github): add go setup step to CI flows This is necessary as macos-latest image does not appear to come with go installed by default. Signed-off-by: Sergei Trofimov --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 322b5d77..be89239a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: