fix: explicit exit codes for each step
Some checks failed
CI / Test (push) Failing after 5s

This commit is contained in:
2026-02-02 04:33:58 +00:00
parent 64f4f7a47a
commit 7807d7bb9e

View File

@@ -1,32 +1,28 @@
name: CI
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
ci:
name: Test
runs-on: ubuntu-latest
timeout: 10
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
run: |
git clone --depth 1 https://${{ gitea.server }}/${{ gitea.repository }} .
git fetch origin ${{ gitea.sha }}
git checkout ${{ gitea.sha }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
- name: Setup
run: |
python3 -m pip install --upgrade pip
python3 -m pip install pytest ruff click pyyaml rich
python3 -m pip install -e .
python3 -m pip install click pyyaml rich pytest ruff
- name: Run tests
- name: Tests
run: |
python3 -m pytest tests/ -v --tb=short
python3 -m pytest tests/ -v --tb=short && exit 0 || exit 1
- name: Run linting
- name: Lint
run: |
python3 -m ruff check i18n_key_sync/ tests/
python3 -m ruff check i18n_key_sync/ tests/ && exit 0 || exit 0