feat: add global_concurrency_limit_id support to deployments #1285
Workflow file for this run
This file contains hidden or 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: Build and Test | |
"on": | |
push: | |
branches: | |
- main | |
paths: | |
- go.mod | |
- go.sum | |
- "**/*.go" | |
- .github/workflows/provider-build.yaml | |
pull_request: | |
branches: | |
- main | |
paths: | |
- go.mod | |
- go.sum | |
- "**/*.go" | |
- .github/workflows/provider-build.yaml | |
permissions: {} | |
jobs: | |
build: | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
fail-fast: false | |
name: Build and Test (${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
# This action installs go and caches downloaded modules, so we favor | |
# this over using the `mise-action` to install Go. | |
- name: Set up Golang | |
uses: actions/setup-go@v6 | |
with: | |
go-version-file: 'go.mod' | |
- name: Install tool dependencies | |
uses: jdx/mise-action@v3 | |
with: | |
install_args: gotestsum | |
- name: Build | |
run: mise run build | |
- name: Unit Test | |
run: mise run test | |
lint: | |
permissions: | |
contents: read | |
pull-requests: read | |
runs-on: ubuntu-latest | |
name: Lint | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v8 | |
with: | |
only-new-issues: true |