diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2124ee0..1609891 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: go-tests: runs-on: self-hosted container: - image: golang:1.16.5 + image: golang:1.22.2 defaults: run: shell: bash @@ -16,11 +16,6 @@ jobs: - 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 @@ -28,9 +23,3 @@ jobs: # -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 ./...