Fix: macOS titlebar safe area margins for Qt 6.9.0+ #407
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - v* | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| format-lint: | |
| name: Code Linting | |
| uses: ./.github/workflows/format-lint.yml | |
| secrets: inherit | |
| linux: | |
| name: Linux | |
| needs: | |
| - format-lint | |
| uses: ./.github/workflows/linux.yml | |
| secrets: inherit | |
| macos: | |
| name: macOS | |
| needs: | |
| - format-lint | |
| uses: ./.github/workflows/macos.yml | |
| secrets: inherit | |
| windows: | |
| name: Windows | |
| needs: | |
| - format-lint | |
| uses: ./.github/workflows/windows.yml | |
| secrets: inherit |