fix: resolve Gitea Actions CI/CD workflow configuration
Some checks failed
CI / test (push) Failing after 6s

This commit is contained in:
2026-02-02 04:06:15 +00:00
parent 2e0c40cbc8
commit 906189e616

View File

@@ -14,18 +14,21 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
run: | run: |
mkdir -p $HOME/.cache/pip git clone https://${{ gitea.server }}/${{ gitea.repository }} .
git clone https://github.com/${{ gitea.repository }} $HOME/repo
cd $HOME/repo
git checkout ${{ gitea.sha }} git checkout ${{ gitea.sha }}
- name: Set up Python - name: Set up Python
run: | run: |
python3 -m pip install --upgrade pip python3 -m pip install --upgrade pip
- name: Install dependencies
run: |
python3 -m pip install -e ".[dev]" python3 -m pip install -e ".[dev]"
- name: Run tests - name: Run tests
run: python3 -m pytest tests/ -v --tb=short run: |
python3 -m pytest tests/ -v --tb=short
- name: Run linting - name: Run linting
run: python3 -m ruff check i18n_key_sync/ tests/ run: |
python3 -m ruff check i18n_key_sync/ tests/