From b6cc75fcda1943e007b9388f6c697037f951e3e8 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 5 Dec 2024 15:13:08 +1100 Subject: [PATCH] Rename file --- .github/workflows/{lint.yaml => ci.yaml} | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) rename .github/workflows/{lint.yaml => ci.yaml} (73%) diff --git a/.github/workflows/lint.yaml b/.github/workflows/ci.yaml similarity index 73% rename from .github/workflows/lint.yaml rename to .github/workflows/ci.yaml index 8abbb4b..9ceea04 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,6 @@ # Run code style tests -name: Code Style +name: Code Checks on: push: @@ -11,13 +11,24 @@ on: - master jobs: - clang-tidy: + checks: runs-on: ubuntu-latest steps: - name: Checkout Code uses: actions/checkout@v4 + with: + submodules: recursive + - name: Install Qt + uses: jurplel/install-qt-action@v4 + with: + version: 5.13.2 + - name: Build qwt + run: | + cd qwt + qmake qwt.pro + make - uses: cpp-linter/cpp-linter-action@v2 id: linter env: