mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-07-27 20:34:51 +08:00
51 lines
1.3 KiB
YAML
Vendored
51 lines
1.3 KiB
YAML
Vendored
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
name: Rundev
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- renovate/**
|
|
- weblate
|
|
- dependabot/**
|
|
- copilot/**
|
|
- codex/**
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
rundev:
|
|
runs-on: ubuntu-24.04-arm
|
|
name: Test development Docker
|
|
env:
|
|
PYTHONUNBUFFERED: 1
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
|
|
with:
|
|
path: /tmp/cache/tesseract
|
|
key: tesseract-data
|
|
- uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
|
|
with:
|
|
enable-cache: false
|
|
version: 0.11.29
|
|
- run: ./rundev.sh build
|
|
- run: ./rundev.sh start
|
|
- run: ./rundev.sh wait
|
|
- run: ./rundev.sh check
|
|
- run: ./rundev.sh compilemessages
|
|
- run: ./rundev.sh test --exitfirst
|
|
- run: ./rundev.sh test weblate/checks/tests/test_chars_checks.py
|
|
- run: ./rundev.sh logs
|
|
if: always()
|
|
- run: ./rundev.sh stop
|