Skip to content

πŸš€ Winget Compatibility #10

πŸš€ Winget Compatibility

πŸš€ Winget Compatibility #10

Workflow file for this run

name: golangci-lint πŸ•΅οΈβ€β™‚οΈ
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
concurrency:
group: golangci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
golangci:
name: Golang CI 🧹
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install Go 🐹
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: "1.21"
cache: false
- name: golangci-lint πŸ•΅οΈβ€β™‚οΈ
uses: golangci/golangci-lint-action@3cfe3a4abbb849e10058ce4af15d205b6da42804 # v4.0.0
with:
# Require: The version of golangci-lint to use.
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
version: v1.54