Run go-makefile-maker #752
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
################################################################################ | |
# This file is AUTOGENERATED with <https://github.com/sapcc/go-makefile-maker> # | |
# Edit Makefile.maker.yaml instead. # | |
################################################################################ | |
name: Checks | |
"on": | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: {} | |
permissions: | |
checks: write | |
contents: read | |
jobs: | |
checks: | |
name: Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
check-latest: true | |
go-version: 1.23.2 | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: latest | |
- name: Dependency Licenses Review | |
run: make check-dependency-licenses | |
- name: Install govulncheck | |
run: go install golang.org/x/vuln/cmd/govulncheck@latest | |
- name: Run govulncheck | |
run: govulncheck -format text ./... | |
- name: Check for spelling errors | |
uses: reviewdog/action-misspell@v1 | |
with: | |
exclude: ./vendor/* | |
fail_on_error: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
ignore: importas | |
reporter: github-check | |
- name: Check if source code files have license header | |
run: make check-license-headers |