feat: Add Qt 6 support (#209) #58
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
name: Build Src | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
workflow_dispatch: | |
env: | |
QT_VERSION: '5.15.2' | |
jobs: | |
Linux-Build: | |
name: Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install Qt | |
uses: jurplel/[email protected] | |
with: | |
version: ${{env.QT_VERSION}} | |
modules: qtwebengine | |
- name: Build source | |
run: | | |
qmake src/ | |
make |