From 1402f79afaf70192ff5ce05364435236e9d04788 Mon Sep 17 00:00:00 2001 From: Federico Guerinoni Date: Tue, 5 Dec 2023 20:12:05 +0100 Subject: [PATCH] CI: Add more Qt versions to build Signed-off-by: Federico Guerinoni --- .github/workflows/build-macos.yml | 2 +- .github/workflows/build-w10.yml | 2 +- .github/workflows/clang-format.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index a571aa5..99d6ca6 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -6,7 +6,7 @@ jobs: Build: strategy: matrix: - qt_version: [6.1.2] + qt_version: [6.1.2, 6.6.0] platform: [macos-latest] arch: [x64] fail-fast: false diff --git a/.github/workflows/build-w10.yml b/.github/workflows/build-w10.yml index 69a2a79..7211c12 100644 --- a/.github/workflows/build-w10.yml +++ b/.github/workflows/build-w10.yml @@ -6,7 +6,7 @@ jobs: Build: strategy: matrix: - qt_version: [6.1.2] + qt_version: [6.1.2, 6.6.0] platform: [windows-latest] arch: [x64, x86] fail-fast: false diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index 4fb7a1f..df68373 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -4,18 +4,18 @@ on: [push, pull_request] jobs: clang-format: - runs-on: ubuntu-20.04 + runs-on: ubuntu-lastest steps: - name: Checkout uses: actions/checkout@v4 - - uses: DoozyX/clang-format-lint-action@v0.16 + - uses: DoozyX/clang-format-lint-action@v0.9 name: "Run clang-format" with: source: './src' extensions: 'hpp,cpp' - clangFormatVersion: 11 + clangFormatVersion: 16 inplace: True - uses: EndBug/add-and-commit@v9 @@ -27,7 +27,7 @@ jobs: js-beautify: needs: clang-format - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout