Skip to content

feat: add better linting targets and CI #3

feat: add better linting targets and CI

feat: add better linting targets and CI #3

Workflow file for this run

name: api
on:
pull_request:
branches:
- main
paths:
- "**/*.go"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.3"
- name: Run linter
run: make lint-api
- name: Verify no changes
run: make no-changes