Skip to content

Fixes to WFS (external service) file upload endpoint, require street network layer project ID in catchment area request #69

Fixes to WFS (external service) file upload endpoint, require street network layer project ID in catchment area request

Fixes to WFS (external service) file upload endpoint, require street network layer project ID in catchment area request #69

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:b887abf3845e0caee7899a55261d1c51513be6dc) : 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