Skip to content

Commit

Permalink
Created github action to install qt
Browse files Browse the repository at this point in the history
  • Loading branch information
AngryFender authored Aug 6, 2023
1 parent b865274 commit 7a30178
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Qt C++

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: windows

steps:
- name: Qt
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
host: 'windows'
target: 'desktop'
arch: 'win64msvc201964'
dir: '${{ github.workspace }}/Remini/'
install-deps: 'true'
modules: 'widgets'
cache: 'false'
cache-key-prefix: 'install-qt-action'
setup-python: 'false'
tools: 'toolsifw toolsqtcreator,qt.tools.qtcreator'
set-env: 'true'
tools-only: 'false'

0 comments on commit 7a30178

Please sign in to comment.