mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-22 01:31:25 -08:00
Remove concurrency for build tests in a PR
This commit is contained in:
parent
3a41b2a2f8
commit
d22c348504
3 changed files with 10 additions and 4 deletions
8
.github/workflows/deploy_backend_main.yml
vendored
8
.github/workflows/deploy_backend_main.yml
vendored
|
@ -60,12 +60,12 @@ jobs:
|
|||
- name: Get Census Data
|
||||
run: |
|
||||
poetry run python3 -m data_pipeline.application census-data-download
|
||||
- name: Extract Data Sources
|
||||
run: |
|
||||
poetry run python3 -m data_pipeline.application extract-data-sources
|
||||
- name: Extract Data Sources
|
||||
run: |
|
||||
poetry run python3 -m data_pipeline.application extract-data-sources
|
||||
- name: Run ETL
|
||||
run: |
|
||||
poetry run python3 -m data_pipeline.application etl-run
|
||||
poetry run python3 -m data_pipeline.application etl-run
|
||||
- name: Generate Score
|
||||
run: |
|
||||
poetry run python3 -m data_pipeline.application score-run
|
||||
|
|
3
.github/workflows/pr_backend.yml
vendored
3
.github/workflows/pr_backend.yml
vendored
|
@ -3,6 +3,9 @@ on:
|
|||
pull_request:
|
||||
paths:
|
||||
- "data/**"
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
||||
cancel-in-progress: true
|
||||
env:
|
||||
CENSUS_API_KEY: ${{ secrets.CENSUS_API_KEY }}
|
||||
J40_VERSION_LABEL_STRING: ${{ vars.SCORE_VERSION }}
|
||||
|
|
3
.github/workflows/pr_frontend.yml
vendored
3
.github/workflows/pr_frontend.yml
vendored
|
@ -3,6 +3,9 @@ on:
|
|||
pull_request:
|
||||
paths:
|
||||
- "client/**"
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Add table
Reference in a new issue