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

23 lines
521 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install click pyyaml rich pytest ruff
python3 -m pip install -e .
- name: Run tests
run: python3 -m pytest tests/ -v --tb=short