Skip to content

Commit

Permalink
Merge pull request #124 from alexandear/ci-update-actions
Browse files Browse the repository at this point in the history
ci: update actions; remove unneded check for go version
  • Loading branch information
dhartunian authored Aug 25, 2023
2 parents ca59e56 + 849af2b commit b7e69dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Go (${{ matrix.go }}
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}

Expand All @@ -30,4 +30,4 @@ jobs:
run: go test ./...

- name: Tidy (${{ matrix.go }})
run: '[[ `go version` < "go version go1.15.10" ]] || go mod tidy'
run: go mod tidy

0 comments on commit b7e69dd

Please sign in to comment.