Skip to content

Rewrite comments in Go files in simpler language #65

Rewrite comments in Go files in simpler language

Rewrite comments in Go files in simpler language #65

Workflow file for this run

name: Run Linter Checks
on:
workflow_dispatch:
schedule: # Run every day at midnight (UTC)
- cron: '0 0 * * *'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
push:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
tags:
- 'v*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lints:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go environment
uses: actions/setup-go@v5
with:
go-version: stable
- name: Set up golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: latest
- name: Run linter checks
run: |
make lint
continue-on-error: false