Fix word wrap styling #529
This file contains hidden or 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
| # SPDX-FileCopyrightText: 2023-present Tobias Kunze | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Build | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - 'src/pretalx/locale/**' | |
| - 'doc/**' | |
| pull_request: | |
| branches: [ main ] | |
| paths-ignore: | |
| - 'src/pretalx/locale/**' | |
| - 'doc/**' | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| FORCE_COLOR: 1 | |
| jobs: | |
| packaging: | |
| runs-on: ubuntu-latest | |
| name: Packaging | |
| strategy: | |
| matrix: | |
| python-version: ["3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v7 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - uses: extractions/setup-just@v4 | |
| - name: Set up node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 'latest' | |
| - parallel: | |
| - name: Install system dependencies | |
| run: | | |
| sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list | |
| sudo rm -f /etc/apt/sources.list.d/azure-cli.list | |
| sudo apt clean | |
| sudo apt update | |
| sudo apt install -y gettext unzip | |
| - name: Install Python dependencies | |
| run: just install --extra dev && uv pip install --system wheel | |
| - name: Install frontend dependencies | |
| run: just install-npm | |
| - name: Run check-manifest and build the wheel | |
| run: just release-check-package | |
| - name: Verify a clean-tree source rebuild produces a *current* frontend | |
| run: just release-check-rebuild | |
| - name: Verify the installed wheel ships the bundles and rebuilds without npm | |
| run: just release-check-wheel |