This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
Implement network scenario support, refactor street network fetch code #35
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 | ||
Check failure on line 16 in .github/workflows/pr.yml
|
||
secrets: inherit | ||
test: | ||
name: test | ||
uses: ./.github/workflows/test.yml | ||
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 |