Skip to content

Bump actions/checkout from 3 to 4 #22

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #22

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: GoLint
strategy:
matrix:
go-version: [1.20.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: Checkout Repository
uses: actions/checkout@v4
- name: Run Golint
uses: reviewdog/action-golangci-lint@v2
with:
golangci_lint_flags: "--tests=false"