You've already forked top-wallpaper
26 lines
564 B
YAML
26 lines
564 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: 🧪 Run Linter
|
|
uses: golangci/golangci-lint-action@v2.4.0
|
|
with:
|
|
version: latest
|
|
args: --timeout=5m |