Merge pull request #4 from OldTyT/dependabot/github_actions/actions/s… #50
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: Test golang lint | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
golangci: | |
name: Lint check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.x | |
- uses: actions/checkout@v4 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest |