Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
habedi committed Jan 17, 2025
1 parent bed0a15 commit bd891a2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run Linters

on:
workflow_dispatch: # Allow manual execution
push:
tags:
- 'v*' # Trigger on version tags

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'

- name: Install golangci-lint
run: |
make install-deps
- name: Run golangci-lint
run: |
make lint

0 comments on commit bd891a2

Please sign in to comment.