Skip to content

Commit

Permalink
fixing actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bjartek committed Jun 24, 2024
1 parent 8b3d5e1 commit cb88ef3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand All @@ -25,10 +25,10 @@ jobs:
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: "1.22"
- uses: zencargo/github-action-go-mod-tidy@v1
with:
go-version: 1.22
go-version: "1.22"

test:
runs-on: ubuntu-latest
Expand All @@ -41,7 +41,7 @@ jobs:
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
go-version: "1.22"
- name: run tests
run: go test -timeout 30m -json ./... > test.json
- name: Annotate tests
Expand Down

0 comments on commit cb88ef3

Please sign in to comment.