diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6265196..5e60a43 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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