Skip to content

Commit 50d113a

Browse files
committed
try again
1 parent e41c239 commit 50d113a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
- name: Checkout repository
1616
uses: actions/checkout@v3
1717

18-
# 2️⃣ Setup Python
19-
- name: Set up Python 3.10
18+
# 2️⃣ Setup Python 3.10
19+
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
2222
python-version: "3.10"
@@ -33,13 +33,17 @@ jobs:
3333
run: |
3434
poetry install --no-root
3535
36-
# 5️⃣ Run linting (safe, path-independent)
36+
# 5️⃣ Run linting (all files, path-independent)
3737
- name: Run linting
3838
run: |
3939
poetry run flake8 . --max-line-length=100
4040
4141
# 6️⃣ Run tests
4242
- name: Run tests
4343
run: |
44-
export PATH="$HOME/.local/bin:$PATH"
4544
poetry run pytest tests --maxfail=1 --disable-warnings -q
45+
46+
# 7️⃣ Optional: Memory profiling on key tests
47+
- name: Check memory usage
48+
run: |
49+
poetry run python -m memory_profiler tests/test_analysis.py

0 commit comments

Comments
 (0)