Files
i18n-key-sync/.gitea/workflows/ci.yml
7000pctAUTO 70151a41cb
Some checks failed
CI / test (push) Failing after 5s
fix: add dependencies step
2026-02-02 04:18:09 +00:00

25 lines
553 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
git clone https://${{ gitea.server }}/${{ gitea.repository }} .
git checkout ${{ gitea.sha }}
- name: Python version
run: python3 --version
- name: Install deps
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pytest ruff
python3 -m pip install -e ".[dev]"
- name: Test
run: python3 -m pytest tests/ -v --tb=short