Skip to content

fix(backups): preserve all configurable settings #5041

fix(backups): preserve all configurable settings

fix(backups): preserve all configurable settings #5041

Workflow file for this run

# 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@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
with:
enable-cache: false
version: 0.12.5
- 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