diff options
author | Itay Grudev <itay+89bf5c@grudev.com> | 2020-01-03 10:18:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 10:18:30 +0000 |
commit | 275dcf3fc029002b5498b22370b571747ffe60d6 (patch) | |
tree | 5387abee1243b1a437e215b2eb9b743ccaa36fe8 /.github/workflows | |
parent | Create build-linux-cmake.yml (diff) | |
download | singleapplication-275dcf3fc029002b5498b22370b571747ffe60d6.tar.xz |
Added step to install Qt in GitHub Actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-linux-cmake.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/build-linux-cmake.yml b/.github/workflows/build-linux-cmake.yml index da09711..f591545 100644 --- a/.github/workflows/build-linux-cmake.yml +++ b/.github/workflows/build-linux-cmake.yml @@ -8,8 +8,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - + - uses: actions/checkout@v2 + + - name: Install Qt + uses: jurplel/install-qt-action@v2.2.1 + with: + version: 5.12.6 + - name: cmake run: cmake . |