Skip to content

Commit

Permalink
Merge pull request #838 from kachick/sync-with-gomod
Browse files Browse the repository at this point in the history
Use the same version of go as specified in go.mod
  • Loading branch information
kachick committed Jun 20, 2023
2 parents 3ce6dc4 + 2d227b5 commit e56f219
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/hashira-cui--test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,28 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/setup-go@v4
with:
go-version: '^1.19.1'
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
- run: make
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/setup-go@v4
with:
go-version: '^1.19.1'
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
- run: make test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v4
with:
go-version: '^1.19.1'
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
- uses: golangci/golangci-lint-action@v3
with:
version: v1.53.3
Expand Down

0 comments on commit e56f219

Please sign in to comment.