Skip to content

refactor(modules): Consolidate Go modules to a single root go.mod file #13

refactor(modules): Consolidate Go modules to a single root go.mod file

refactor(modules): Consolidate Go modules to a single root go.mod file #13

Workflow file for this run

name: CI Lint
on:
pull_request:
env:
GO_VERSION: 1.22.4
GOLANGCI_LINT_VERSION: v1.58
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Golang
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}