Files
confsync/.gitea/workflows/ci.yml
7000pctAUTO 4991d2b32f
Some checks failed
CI / test (push) Failing after 8s
fix: CI without checkout step
2026-02-04 20:30:59 +00:00

18 lines
368 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Python
run: |
apt-get update && apt-get install -y python3 python3-pip
- name: Install dependencies
run: |
pip3 install -e .
pip3 install pytest
- name: Run tests
run: pytest confsync/tests/ -v