Update pre-commit hook golangci/golangci-lint to v1.60.3 #927
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
jobs: | |
lint_and_test: | |
name: lint and test | |
uses: arcalot/arcaflow-reusable-workflows/.github/workflows/go_lint_and_test.yaml@main | |
with: | |
go_version: ${{ vars.ARCALOT_GO_VERSION }} | |
release: | |
name: release | |
permissions: | |
contents: write | |
packages: write | |
needs: | |
- lint_and_test | |
uses: arcalot/arcaflow-reusable-workflows/.github/workflows/go_release.yaml@main | |
secrets: | |
REGISTRY_USERNAME: ${{ github.actor }} | |
REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
go_version: ${{ vars.ARCALOT_GO_VERSION }} | |
for_release: ${{ startsWith(github.event.ref, 'refs/tags/') }} | |
registry: ghcr.io |