Skip to content
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

Move SQL functions out of this project and into goat-core for consistency

Move SQL functions out of this project and into goat-core for consistency #44

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / .github/workflows/pr.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr.yml" -> "./.github/workflows/test.yml" (source branch with sha:897bee1f8c3d2f76eab90510769aa93c88ae2378) : the `uses' attribute must be a path, a Docker image, or owner/repo@ref
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