Skip to content

Commit 01ce554

Browse files
authored
Merge pull request #192 from tharropoulos/v28
Update client for v28 changes
2 parents 8a60309 + 3739218 commit 01ce554

13 files changed

+1411
-17
lines changed

Diff for: .github/workflows/golangci-lint.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,20 @@ jobs:
2525

2626
- uses: actions/setup-go@v5
2727
with:
28-
go-version: stable
28+
go-version: '1.22'
2929

30+
31+
- name: Install dependencies
32+
run: |
33+
go mod download
34+
go install github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen@latest
35+
36+
- name: Generate API code
37+
run: go generate ./...
38+
39+
- name: Clean module cache
40+
run: go clean -modcache
41+
3042
- name: golangci-lint
3143
uses: golangci/golangci-lint-action@v6
3244
with:

0 commit comments

Comments
 (0)