Skip to content

Commit

Permalink
create github action requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Aldrian Harjati committed Aug 21, 2023
1 parent 2f074b2 commit 3126408
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install ruff pytest
if [ -f .devcontainer/requirements.txt ]; then pip install -r .devcontainer/requirements.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kedro
pandas
pandera
ipykernel
openpyxl
pytest

0 comments on commit 3126408

Please sign in to comment.