update to clang-tidy + workflow improvement cpp build & lint check #130

Merged
zach merged 14 commits from clang-tidy-fixes into main 2026-06-29 22:10:27 +02:00
Showing only changes of commit afd08e8aa7 - Show all commits
+1 -22
View File
@@ -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 | \