Files
i18n-key-sync/.gitea/workflows/ci.yml
7000pctAUTO e42e7e7bc4
Some checks failed
CI / test (push) Failing after 5s
fix: add pytest step
2026-02-02 04:27:08 +00:00

17 lines
396 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clone repo
run: |
git clone https://${{ gitea.server }}/${{ gitea.repository }} .
git checkout ${{ gitea.sha }}
- name: Install and test
run: |
pip3 install pytest
pip3 install click pyyaml rich
pytest tests/ -v --tb=short