Skip to content

Commit 087dbf8

Browse files
Updated CI
1 parent a8b4261 commit 087dbf8

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/python.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main ]
66
paths:
7-
- 'asap-sketch-ingest/**'
7+
- 'asap-summary-ingest/**'
88
- 'asap-tools/queriers/prometheus-client/**'
99
- 'asap-planner/**'
1010
- 'asap-tools/**'
@@ -15,7 +15,7 @@ on:
1515
pull_request:
1616
branches: [ main ]
1717
paths:
18-
- 'asap-sketch-ingest/**'
18+
- 'asap-summary-ingest/**'
1919
- 'asap-tools/queriers/prometheus-client/**'
2020
- 'asap-planner/**'
2121
- 'asap-tools/**'
@@ -33,7 +33,7 @@ jobs:
3333
detect-changes:
3434
runs-on: ubuntu-latest
3535
outputs:
36-
arroyo_sketch: ${{ steps.filter.outputs.arroyo_sketch }}
36+
summary_ingest: ${{ steps.filter.outputs.summary_ingest }}
3737
prometheus_client: ${{ steps.filter.outputs.prometheus_client }}
3838
controller: ${{ steps.filter.outputs.controller }}
3939
utilities: ${{ steps.filter.outputs.utilities }}
@@ -45,8 +45,8 @@ jobs:
4545
id: filter
4646
with:
4747
filters: |
48-
arroyo_sketch:
49-
- 'asap-sketch-ingest/**'
48+
summary_ingest:
49+
- 'asap-summary-ingest/**'
5050
- 'asap-common/dependencies/py/**'
5151
prometheus_client:
5252
- 'asap-tools/queriers/prometheus-client/**'
@@ -64,9 +64,9 @@ jobs:
6464
- 'asap-tools/execution-utilities/**'
6565
- 'asap-common/dependencies/py/**'
6666
67-
test-arroyo-sketch:
67+
test-summary-ingest:
6868
needs: detect-changes
69-
if: needs.detect-changes.outputs.arroyo_sketch == 'true'
69+
if: needs.detect-changes.outputs.summary_ingest == 'true'
7070
runs-on: ubuntu-latest
7171
strategy:
7272
matrix:
@@ -81,12 +81,12 @@ jobs:
8181
run: |
8282
python -m pip install --upgrade pip
8383
pip install black==24.8.0 flake8==6.1.0
84-
if [ -f asap-sketch-ingest/requirements.txt ]; then pip install -r asap-sketch-ingest/requirements.txt; fi
84+
if [ -f asap-summary-ingest/requirements.txt ]; then pip install -r asap-summary-ingest/requirements.txt; fi
8585
- name: Check formatting with Black
86-
working-directory: asap-sketch-ingest
86+
working-directory: asap-summary-ingest
8787
run: black --check --diff .
8888
- name: Lint with flake8
89-
working-directory: asap-sketch-ingest
89+
working-directory: asap-summary-ingest
9090
run: |
9191
# Stop the build if there are Python syntax errors or undefined names
9292
flake8 . --config=../.flake8 --count --select=E9,F63,F7,F82 --show-source --statistics

0 commit comments

Comments
 (0)