From afd08e8aa7da0701a868fd59c4cd450c180e39ee Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Mon, 29 Jun 2026 01:19:39 +0200 Subject: [PATCH] revert; clang-tidy does on same workflow, but nonblocking --- .gitea/workflows/cpp.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.gitea/workflows/cpp.yml b/.gitea/workflows/cpp.yml index d6e3ca9..5c4cd7e 100644 --- a/.gitea/workflows/cpp.yml +++ b/.gitea/workflows/cpp.yml @@ -19,29 +19,8 @@ jobs: - name: Build run: ninja -C build - - name: Upload build dir - uses: actions/upload-artifact@v4 - with: - name: build - path: build/ - - lint: - runs-on: alpine - needs: build - container: - image: git.aramjonghu.nl/aramjonghu/zshell-ci:latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Download build dir - uses: actions/download-artifact@v4 - with: - name: build - path: build/ - - name: clang-tidy + continue-on-error: true run: | set -o pipefail run-clang-tidy -p build -j $(nproc) -header-filter="Plugins/.*" 2>&1 | \