Skip to content

chore: add Go linting to CI #1

chore: add Go linting to CI

chore: add Go linting to CI #1

Workflow file for this run

name: admin
on:
pull_request:
branches:
- main
ignore-paths:
- ui/**
jobs:
lint:
runs-on: depot-ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build
run: make build
- name: Validate Go Code
run: make validate-go-code