Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/py.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .github/workflows/unittest.yml
name: Unit test CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12

- name: Install dependencies (if any)
run: |
if [ -s requirements.txt ]; then
pip install -r requirements.txt
else
echo "No dependencies to install"


- name: Run unit test
run: echo "unit test passed 🎉"
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/data
/venv
/__pycache__/
*.pyc
Binary file modified README.md
Binary file not shown.
641 changes: 641 additions & 0 deletions notebooks/EDA.ipynb

Large diffs are not rendered by default.

Loading
Loading