Files
confsync/.gitea/workflows/ci.yml
7000pctAUTO ab9764ad39
Some checks failed
CI / test (push) Failing after 7s
fix: CI setup-python action
2026-02-04 21:09:10 +00:00

17 lines
379 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install pytest
run: pip install pytest
- name: Run tests
run: pytest confsync/tests/ -v