Skip to content

Commit

Permalink
Add golangci-lint workflow
Browse files Browse the repository at this point in the history
We now execute golangci lint checks on pull requests

Signed-off-by: Adolfo García Veytia (Puerco) <[email protected]>
  • Loading branch information
puerco committed May 30, 2024
1 parent 9224799 commit 93c8d7e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright 2024 Stacklok, Inc
# SPDX-License-Identifier: Apache-2.0

name: golangci-lint

on:
pull_request:

permissions: read-all

jobs:
golangci:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: '1.22'
check-latest: true
cache: true
- name: lint
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1
with:
version: v1.58
args: --timeout=5m

0 comments on commit 93c8d7e

Please sign in to comment.