Skip to content

Commit

Permalink
modify to check only chap 9 codes
Browse files Browse the repository at this point in the history
  • Loading branch information
ssupecial committed Oct 12, 2024
1 parent bc141c7 commit 4b5fe37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/airflow_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Install Pylint
run: pip install pylint
- name: Run Pylint
run: find . -name "*.py" | xargs pylint --output-format=colorized
run: find airflow/chap9/ -name "*.py" | xargs pylint --output-format=colorized
- name: Install Black
run: pip install black
- name: Run Black
run: find . -name "*.py" | xargs black --check
run: find airflow/chap9/ -name "*.py" | xargs black --check

- name: Install dependencies
run: pip install apache-airflow pytest
Expand Down

0 comments on commit 4b5fe37

Please sign in to comment.