diff options
author | Itay Grudev <itay+89bf5c@grudev.com> | 2020-01-03 10:43:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 10:43:13 +0000 |
commit | 0d07dd387a248bfe14b7b6811c1f62a3ee9dac99 (patch) | |
tree | 0bedde86751ca5ab4e09cc3c3b1673ad1d7853b3 /.github/workflows | |
parent | GitHub Actions Exact Qt version specificatoin (diff) | |
download | singleapplication-0d07dd387a248bfe14b7b6811c1f62a3ee9dac99.tar.xz |
GitHub Actions Multiple platforms support
ubuntu-latest, windows-latest, macos-latest
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-linux-cmake.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build-linux-cmake.yml b/.github/workflows/build-linux-cmake.yml index e78ae65..4913947 100644 --- a/.github/workflows/build-linux-cmake.yml +++ b/.github/workflows/build-linux-cmake.yml @@ -8,8 +8,9 @@ jobs: strategy: matrix: qt_version: [5.11.3, 5.12.6, 5.14.0] + platform: [ubuntu-latest, windows-latest, macos-latest] - runs-on: ubuntu-latest + runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2 |