Bump jdpurcell/install-qt-action from b45c67aaa9e0ea77e59a7031ec14a12d5ddf4b35 to 2f115872f83e98e8eafb284d799fbe328f52dbe3 #440
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
name: Translations | |
on: [ push, pull_request ] | |
permissions: | |
contents: read | |
env: | |
CMAKE_BUILD_PARALLEL_LEVEL: 4 | |
jobs: | |
lupdate: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Install Qt | |
run: | | |
sudo apt-mark hold firefox grub-efi-amd64-signed | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install qt6-{base-{dev{,-tools},doc-dev},connectivity-{dev,doc-html},l10n-tools,tools-dev{,-tools}} | |
- uses: actions/checkout@v4 | |
- name: Check translation files | |
run: | | |
cmake -S "$GITHUB_WORKSPACE" -B "$RUNNER_TEMP" | |
cmake --build "$RUNNER_TEMP" --target {cli,QtPokit}_lupdate # \todo Include gui too, when relevant. | |
[[ -z $(git status --porcelain | tee /dev/stderr) ]] |