CI with Python setup and tests
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-01-31 22:06:01 +00:00
parent 14e760affc
commit 7102e553b7

View File

@@ -5,5 +5,18 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Hello - name: Checkout
run: echo "Hello World" run: pwd && ls -la
- name: Setup Python
run: |
python3 -m pip install --upgrade pip
python3 --version
- name: Install dependencies
run: |
pip3 install -r requirements.txt
pip3 install pytest
- name: Run tests
run: pytest3 tests/ -v