Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO 143239c7cb
Some checks failed
CI / test (push) Has been cancelled
Fix pytest version and update CI workflow
2026-01-31 22:07:37 +00:00

21 lines
404 B
YAML

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 --version
- name: Install dependencies
run: |
pip3 install -r requirements.txt
- name: Run tests
run: pytest3 tests/ -v