Merge pull request #4 from freifunkMUC/dependabot/docker/golang-1.23.… #13
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: Linting | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: ["**"] | |
pull_request: | |
jobs: # Docs: <https://git.io/JvxXE> | |
golangci-lint: | |
name: Golang-CI (lint) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: {fetch-depth: 0} | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
cache: false | |
- name: Run linter | |
uses: golangci/golangci-lint-action@v6 # Action page: <https://github.com/golangci/golangci-lint-action> | |
with: | |
version: v1.56 # without patch version | |
only-new-issues: false # show only new issues if it's a pull request | |
args: --timeout 4m # the default of 1m didn't suffice occasionally |