Fix some Qt input-related problems #88
Workflow file for this run
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: MacOSQt | |
on: | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: "6.7.0" | |
modules: "qt5compat" | |
- name: Build | |
run: | | |
qmake | |
make | |
- name: Build Debug | |
run: | | |
qmake | |
make debug | |
- name: Archive Libraries | |
uses: actions/upload-artifact@v3 | |
with: | |
name: MacOS-Qt-Libraries | |
path: | | |
DebugQt/*.a | |
ReleaseQt/*.a |