Files
top-wallpaper/.gitea/workflows/lint.yml
Ron Rise c70d4c098a
Some checks failed
🚨 Lint Code Base / 🧹 golangci-lint (push) Has been cancelled
Update dependencies and add linting configuration
2025-08-26 12:23:29 -04:00

28 lines
588 B
YAML

on:
push:
branches:
- "*"
name: 🚨 Lint Code Base
run-name: ${{ github.workflow }}-{{ github.ref_name }}-{{ github.run_number }}
jobs:
golangci-lint:
name: 🧹 golangci-lint
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v3
- name: 🛠️ Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24.6'
- name: 📦 📥 Install Dependencies
run: |
go mod download
- name: ✅ 🔍 Run Go Lint
uses: golangci/golangci-lint-action@v8.0.0