Remove concurrency for build tests in a PR

This commit is contained in:
ericiwamoto 2024-12-05 13:00:24 -08:00 committed by Carlos Felix
parent 3a41b2a2f8
commit d22c348504
3 changed files with 10 additions and 4 deletions

View file

@ -60,12 +60,12 @@ jobs:
- name: Get Census Data - name: Get Census Data
run: | run: |
poetry run python3 -m data_pipeline.application census-data-download poetry run python3 -m data_pipeline.application census-data-download
- name: Extract Data Sources - name: Extract Data Sources
run: | run: |
poetry run python3 -m data_pipeline.application extract-data-sources poetry run python3 -m data_pipeline.application extract-data-sources
- name: Run ETL - name: Run ETL
run: | run: |
poetry run python3 -m data_pipeline.application etl-run poetry run python3 -m data_pipeline.application etl-run
- name: Generate Score - name: Generate Score
run: | run: |
poetry run python3 -m data_pipeline.application score-run poetry run python3 -m data_pipeline.application score-run

View file

@ -3,6 +3,9 @@ on:
pull_request: pull_request:
paths: paths:
- "data/**" - "data/**"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
env: env:
CENSUS_API_KEY: ${{ secrets.CENSUS_API_KEY }} CENSUS_API_KEY: ${{ secrets.CENSUS_API_KEY }}
J40_VERSION_LABEL_STRING: ${{ vars.SCORE_VERSION }} J40_VERSION_LABEL_STRING: ${{ vars.SCORE_VERSION }}

View file

@ -3,6 +3,9 @@ on:
pull_request: pull_request:
paths: paths:
- "client/**" - "client/**"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest