Update dependencies and add linting configuration
Some checks failed
🚨 Lint Code Base / 🧹 golangci-lint (push) Failing after 3m12s

This commit is contained in:
2025-08-26 12:16:14 -04:00
parent 515bc6ffc3
commit fec30f3174

View File

@@ -3,23 +3,24 @@ on:
branches: branches:
- "*" - "*"
name: Lint Code Base name: 🚨 Lint Code Base
run-name: ${{ github.workflow }}-{{ github.ref_name }}-{{ github.run_number }} run-name: ${{ github.workflow }}-{{ github.ref_name }}-{{ github.run_number }}
jobs: jobs:
golangci-lint: golangci-lint:
name: golangci-lint name: 🧹 golangci-lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: 📥 Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Set up Go - name: 🛠️ Set up Go
uses: actions/setup-go@v4 uses: actions/setup-go@v4
with: with:
go-version: '1.24.6' go-version: '1.24.6'
- uses: golangci/golangci-lint-action@v8 - name: 🧪 Run Linter
uses: golangci/golangci-lint-action@v2.4.0
with: with:
version: v2.4.1 version: v2.4.1
args: --timeout=5m args: --timeout=5m