Skip to content

Bump golang.org/x/tools from 0.19.0 to 0.20.0 (#91) #117

Bump golang.org/x/tools from 0.19.0 to 0.20.0 (#91)

Bump golang.org/x/tools from 0.19.0 to 0.20.0 (#91) #117

Workflow file for this run

name: Pull Requests
on:
push:
branches:
- v2
pull_request:
branches:
- v2
permissions:
contents: read
pull-requests: read
env:
GO_VERSION: stable
jobs:
build:
strategy:
matrix:
dir: [".", "cmd/depguard"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: go build -v ./...
working-directory: ${{ matrix.dir }}
- name: Test
run: go test -v ./...
working-directory: ${{ matrix.dir }}
lint:
strategy:
matrix:
dir: [".", "cmd/depguard"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint
uses: golangci/golangci-lint-action@v4
with:
working-directory: ${{ matrix.dir }}