Fast CI on "assemble release" PRs #2
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
# NOTE: This name appears in GitHub's Checks API and in workflow's status badge. | |
name: prepare-release | |
# Trigger the workflow when: | |
on: | |
# A push occurs to one of the matched branches. | |
push: | |
branches: | |
- main | |
paths: # Trigger if _only_ these files were changed. | |
- .changelog/*.md | |
- CHANGELOG.md | |
- ".github/**" | |
# Or when a pull request event occurs for a pull request against one of the | |
# matched branches. | |
pull_request: | |
branches: | |
- main | |
paths: # Trigger if _only_ these files were changed. | |
- .changelog/*.md | |
- CHANGELOG.md | |
- ".github/**" | |
jobs: | |
build-go: | |
name: build-go | |
runs-on: ubuntu-20.04 | |
steps: [{name: "fake success", run: "exit 0"}] | |
lint-go: | |
name: lint-go | |
runs-on: ubuntu-20.04 | |
steps: [{name: "fake success", run: "exit 0"}] | |
validate-openapi: | |
name: validate-openapi | |
runs-on: ubuntu-20.04 | |
steps: [{name: "fake success", run: "exit 0"}] | |
validate-migrations: | |
name: validate-migrations | |
runs-on: ubuntu-20.04 | |
steps: [{name: "fake success", run: "exit 0"}] | |
test-e2e-localnet: | |
name: test-e2e-localnet | |
runs-on: ubuntu-20.04 | |
steps: [{name: "fake success", run: "exit 0"}] | |
test-e2e-regression-damask: | |
name: test-e2e-regression-damask | |
runs-on: ubuntu-20.04 | |
steps: [{name: "fake success", run: "exit 0"}] | |
test-e2e-regression-eden: | |
name: test-e2e-regression-eden | |
runs-on: ubuntu-20.04 | |
steps: [{name: "fake success", run: "exit 0"}] |