chore(deps): update dependency packaging to >=22,<24.3 (#12968) #16559
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright © Michal Čihař <[email protected]> | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: Rundev | |
on: | |
push: | |
branches-ignore: | |
- deepsource-fix-** | |
- renovate/** | |
- weblate | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
rundev: | |
runs-on: ubuntu-24.04 | |
name: Test development Docker | |
env: | |
PYTHONUNBUFFERED: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v3 | |
- run: ./rundev.sh build | |
- run: ./rundev.sh start | |
- run: ./rundev.sh wait | |
- run: ./rundev.sh check | |
- run: ./rundev.sh compilemessages | |
- run: ./rundev.sh test --failfast weblate | |
- run: ./rundev.sh logs | |
if: always() | |
- run: ./rundev.sh stop |