Minimal CI workflow without actions
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-01-31 22:03:25 +00:00
parent 9b7a78e5de
commit 0fd7dfc251

View File

@@ -1,20 +1,19 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
container: python:3.11-slim
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
run: |
python3 -m pip install --upgrade pip
python3 --version
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
pip3 install -r requirements.txt
pip3 install pytest
- name: Run tests
run: pytest tests/ -v
run: pytest3 tests/ -v