From 32e68b9df77136f763f0139fe73f65897647f33e Mon Sep 17 00:00:00 2001 From: eikendev Date: Sun, 18 Jul 2021 23:18:59 +0200 Subject: [PATCH] Setup Go in CI pipeline before dependencies --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f46a74b..77b1d70 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,12 +7,12 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 - - name: Install dependencies - run: make setup - name: Export GOBIN uses: actions/setup-go@v2 with: go-version: 1.16 + - name: Install dependencies + run: make setup - name: Run tests run: make test - name: Build image