Skip to content

Github Actions - Linting #2

Github Actions - Linting

Github Actions - Linting #2

Workflow file for this run

name: lint
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21.x'
- name: Install dependencies
run: make dep
- name: Run lint
run: make lint