Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: set up go 1.20
uses: actions/setup-go@v4
with:
go-version: "1.22"
id: go

- name: checkout
uses: actions/checkout@v4

- name: set up go
uses: actions/setup-go@v5
with:
go-version: "1.24"
id: go

- name: build and test
run: |
go get -v
go test -timeout=300s -race -covermode=atomic -coverprofile=$GITHUB_WORKSPACE/profile.cov_tmp ./...
cat $GITHUB_WORKSPACE/profile.cov_tmp | grep -v "_mock.go" > $GITHUB_WORKSPACE/profile.cov
go build -race
Expand All @@ -32,7 +31,7 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.0.2
version: v2.6

- name: install goveralls
run: go install github.com/mattn/goveralls@latest
Expand Down
Loading