Skip to content

Disabled cron build until the permissions are corrected in the API #102

Disabled cron build until the permissions are corrected in the API

Disabled cron build until the permissions are corrected in the API #102

Workflow file for this run

name: Lint and Format
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.1
args: --timeout=5m
- name: Check formatting
run: |
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
gofmt -s -l .
exit 1
fi