Simplest CI test
All checks were successful
CI / test (push) Successful in 1s

This commit is contained in:
2026-01-31 22:05:26 +00:00
parent a01fa11232
commit 14e760affc

View File

@@ -1,26 +1,9 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
pwd
ls -la
- name: Setup Python
run: |
python3 -m pip install --upgrade pip
python3 -c "import sys; print(f'Python {sys.version}')"
- name: Install dependencies
run: |
pip3 install -r requirements.txt
pip3 install pytest
- name: Run tests
run: |
pytest3 tests/ -v
- name: Hello
run: echo "Hello World"