Run Linters #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 Repository | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23 | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y make | |
make install-deps | |
- name: Run Linters | |
run: | | |
make lint | |
continue-on-error: false |