Skip to content

Commit

Permalink
Improve acceptance test workflow
Browse files Browse the repository at this point in the history
Add missing make install step and perform checkout before setup-go to allow
for caching.
  • Loading branch information
bsatzger committed Jul 11, 2024
1 parent cc211a8 commit 259cdc3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 259cdc3

Please sign in to comment.