Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
Signed-off-by: p4u <[email protected]>
  • Loading branch information
p4u committed Apr 19, 2024
1 parent 7f3a206 commit 72b956e
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,18 @@ jobs:
go-tests:
runs-on: self-hosted
container:
image: golang:1.16.5
image: golang:1.22.2
defaults:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.30.0
$(go env GOPATH)/bin/golangci-lint run --timeout=5m -c .golangci.yml
- name: Go test
run: |
# we run vet in another step
go test -vet=off -timeout=1m ./...
# -race can easily make the crypto stuff 10x slower
go test -vet=off -timeout=15m -race -covermode atomic -coverprofile=covprofile ./...
- name: Go analyze
run: |
diff -u <(echo -n) <(gofmt -s -d $(git ls-files '*.go'))
go vet ./...
curl -L https://github.com/dominikh/go-tools/releases/download/2021.1/staticcheck_linux_amd64.tar.gz | tar -xzf -
./staticcheck/staticcheck ./...

0 comments on commit 72b956e

Please sign in to comment.