Skip to content

Commit

Permalink
Use at least go1.15.11 and remove unused cache step from workflows (#185
Browse files Browse the repository at this point in the history
)

Signed-off-by: John Watson <[email protected]>
  • Loading branch information
dctrwatson authored Apr 8, 2021
1 parent 3a7d145 commit c65cb99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,13 @@ jobs:
steps:

- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: ~1.15.11
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Go module cache
id: go-mod-cache
uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: go-mod-cache

- name: Integration Test
run: make integration-test
11 changes: 2 additions & 9 deletions .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,14 @@ jobs:
steps:

- name: Set up Go
uses: actions/setup-go@v1
uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: ~1.15.11
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Go module cache
id: go-mod-cache
uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: go-mod-cache

- name: Build
run: go install -v ./...

Expand Down

0 comments on commit c65cb99

Please sign in to comment.