CI with directory handling
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-01-31 22:08:33 +00:00
parent 111266f579
commit 6a398ec902

View File

@@ -6,7 +6,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: pwd && ls -la
run: |
ls -la
ls -la man-card-project/ 2>/dev/null || true
- name: Setup Python
run: |
@@ -15,7 +17,14 @@ jobs:
- name: Install dependencies
run: |
if [ -f man-card-project/requirements.txt ]; then
cd man-card-project
fi
pip3 install -r requirements.txt
- name: Run tests
run: pytest3 tests/ -v
run: |
if [ -f man-card-project/requirements.txt ]; then
cd man-card-project
fi
pytest3 tests/ -v