Skip to content

Bump golangci/golangci-lint-action from 4 to 5 #118

Bump golangci/golangci-lint-action from 4 to 5

Bump golangci/golangci-lint-action from 4 to 5 #118

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@v5
with:
working-directory: ${{ matrix.dir }}