Skip to content

Merge pull request #2 from Delphia/linting-fixes #5

Merge pull request #2 from Delphia/linting-fixes

Merge pull request #2 from Delphia/linting-fixes #5

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '**/*.md'
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: make build
env:
VERSION: latest
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '^1.22'
- name: Test
run: make test
- name: Lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.57.2