Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
zephinzer committed Aug 10, 2023
1 parent ca8a63f commit 82aa74d
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,20 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Initialise Go
uses: actions/setup-go@v3
with:
go-version: '>=1.20.0'
- name: Restore code dependencies
uses: actions/cache/restore@v3
with:
key: dependencies
path: ./vendor
- name: Install system dependencies
uses: actions/setup-go@v3
with:
go-version: '>=1.20.0'
path: |
./vendor
$(go env GO)/bin
- name: Install global dependencies
run: |
go env GOBIN BOPATH;
go env GOBIN GOPATH;
make install-swaggo-ci;
which swag;
- name: Install code dependencies
Expand All @@ -27,7 +29,9 @@ jobs:
uses: actions/cache/save@v3
with:
key: dependencies
path: ./vendor
path: |
./vendor
$(go env GO)/bin
tests:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 82aa74d

Please sign in to comment.