From 2e9d6c6932a44cf936ddd8afae1b0fded482fb61 Mon Sep 17 00:00:00 2001 From: Benjamin Satzger Date: Thu, 11 Jul 2024 11:14:14 +0200 Subject: [PATCH] Improve acceptance test workflow Add missing make install step and perform checkout before setup-go to allow for caching. --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2a5dd6..3369efa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,13 +8,16 @@ jobs: runs-on: ubicloud steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install Go uses: actions/setup-go@v5 with: go-version: 1.22.x - - name: Checkout - uses: actions/checkout@v4 + - name: make install + run: make install - name: make testacc run: make testacc