Add Create and Update for Worker Deployment Version, update scaler config and enable per-task-type compute providers #1524
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: ci | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| name: ci | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: '^1.21' | |
| - uses: arduino/setup-protoc@v2 | |
| - name: 'Setup jq' | |
| uses: dcarbone/install-jq-action@v2 | |
| - run: make ci-build | |
| - name: Fail if the repo is dirty | |
| run: | | |
| if [[ -n $(git status --porcelain) ]]; then | |
| echo "Detected uncommitted changes." | |
| git status | |
| git diff | |
| exit 1 | |
| fi | |
| - name: Check for OpenAPI path conflicts | |
| run: go run ./cmd/check-path-conflicts/main.go openapi/openapiv2.json |