This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
Move SQL functions out of this project and into goat-core for consistency #44
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: "PR" | ||
on: | ||
pull_request_target: | ||
branches: [main] | ||
merge_group: | ||
workflow_dispatch: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
jobs: | ||
lint: | ||
name: lint | ||
uses: ./.github/workflows/lint.yml | ||
secrets: inherit | ||
test: | ||
name: test | ||
uses: ./.github/workflows/test.yml | ||
Check failure on line 21 in .github/workflows/pr.yml GitHub Actions / .github/workflows/pr.ymlInvalid workflow file
|
||
secrets: inherit | ||
release-docker-build: | ||
name: docker-build | ||
uses: ./.github/workflows/release.yml | ||
secrets: inherit | ||
required: | ||
needs: [lint, test, release-docker-build] | ||
if: always() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: fail if conditional jobs failed | ||
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') | ||
run: exit 1 |