Files
man-card/.gitea/workflows/ci.yml
7000pctAUTO f086d39802
Some checks failed
CI / test (push) Failing after 1s
Minimal pytest test
2026-01-31 22:13:53 +00:00

16 lines
312 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install pytest
run: pip3 install pytest
- name: Check pytest
run: pytest --version
- name: List directories
run: |
ls -d */ 2>/dev/null || echo "No subdirectories"