ci(goreleaser): multiarch external releases #3751
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: ci pr | |
# continuous integration on pull requests to main and release branches | |
on: | |
pull_request: | |
branches: | |
- main | |
- release/** | |
- upgrade/** # Run CI against upgrade PRs | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
pre-commit: | |
uses: ./.github/workflows/pre-commit.yml | |
go-tests: | |
uses: ./.github/workflows/gotest.yml | |
go-lint: | |
uses: ./.github/workflows/golangci-lint.yml | |
cli-install: | |
uses: ./.github/workflows/cliinstall.yml | |
cli-command: | |
uses: ./.github/workflows/clicommand.yml | |
sol-tests: | |
uses: ./.github/workflows/soltest.yml | |
e2e-tests: | |
uses: ./.github/workflows/pr-e2etest.yml | |
check-sol-artifacts: | |
uses: ./.github/workflows/check-sol-artifacts.yml | |
pr-label: | |
uses: ./.github/workflows/pr-label.yml |