Skip to content

build(deps): bump golang.org/x/tools from 0.22.0 to 0.23.0 (#168) #349

build(deps): bump golang.org/x/tools from 0.22.0 to 0.23.0 (#168)

build(deps): bump golang.org/x/tools from 0.22.0 to 0.23.0 (#168) #349

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
tags: [ v* ]
pull_request:
branches: [ master ]
env:
GO_VERSION: ^1.20
GOLANGCI_LINT_VERSION: v1.59.0
permissions:
contents: read
jobs:
go_install:
if: ${{ !github.event.pull_request.head.repo.fork }}
runs-on: ubuntu-latest
steps:
- uses: rlespinasse/github-slug-action@v4.4.1
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- run: cd /tmp && go install github.com/Antonboom/testifylint@${{ env.version }} && testifylint -h
env:
version: ${{ env.GITHUB_EVENT_PULL_REQUEST_HEAD_SHA || env.GITHUB_REF_SLUG }}
lint:
permissions:
contents: read # for actions/checkout to fetch code
pull-requests: read # for golangci/golangci-lint-action to fetch pull requests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
args: --timeout=5m
test:
permissions:
checks: write # for shogo82148/actions-goveralls to create a new check based on the results
contents: read # for actions/checkout to fetch code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- run: go test -coverpkg=./analyzer,./internal/analysisutil,./internal/checkers,./internal/config -coverprofile=coverage.out ./...
env:
GOEXPERIMENT: nocoverageredesign # https://github.com/golang/go/issues/65653#issuecomment-1955872134
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.out