enable filtering channels by localized path #473
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
# vim: sw=2 | |
name: lupdate | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
ubuntu-qt6: | |
name: Qt 6.5.3 / Ubuntu 22.04 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup CMake | |
uses: ./.github/actions/cmake | |
with: | |
qt_version: 6.5.3 | |
use_qt6: ON | |
ccache: 'false' | |
modules: qtserialport qtwebsockets | |
- name: Refresh translation files | |
run: cmake --build '${{github.workspace}}/build' --target update_translations | |
- name: Check changes | |
run: git diff --exit-code |