This repository was archived by the owner on Jul 24, 2026. It is now read-only.
feat: extend the mock bar with settings and presets #46
Workflow file for this run
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: Elias Mueller | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: Pipeline | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| tags: | |
| - '*' | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| name: Verify | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v7 | |
| - name: Install Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install just | |
| uses: taiki-e/install-action@just | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install libEGL for PySide6 | |
| run: sudo apt-get update && sudo apt-get install -y libegl1 | |
| - name: Run pre-commit hooks | |
| run: just fmt | |
| env: | |
| SKIP: qmllint | |
| - name: Run the QML tests | |
| run: just test | |
| - name: Verify REUSE compliance | |
| uses: fsfe/reuse-action@v6 |