refactor(ci): restructure workflows to multi-job per language
JS/TS / fmt (pull_request) Successful in 15s
JS/TS / lint (pull_request) Successful in 17s
Python / lint-format (pull_request) Failing after 28s
C++ / build (pull_request) Successful in 1m37s
Python / test (pull_request) Successful in 44s
C++ / clang-tidy (pull_request) Successful in 3m15s
Rust / build (pull_request) Successful in 1m22s
Python / buildcheck (pull_request) Successful in 1m51s
Rust / fmt (pull_request) Successful in 1m0s
Rust / clippy (pull_request) Successful in 1m24s

This commit is contained in:
2026-07-08 14:14:50 +02:00
parent 05c8851143
commit 0a365204cd
5 changed files with 213 additions and 91 deletions
+17
View File
@@ -21,6 +21,23 @@ jobs:
- name: Build
run: ninja -C build
clang-tidy:
runs-on: alpine
container:
image: git.aramjonghu.nl/aramjonghu/zshell-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure
run: cmake -B build -G Ninja -DENABLE_MODULES=plugin -DCMAKE_BUILD_TYPE=Release
- name: Build
run: ninja -C build
- name: clang-tidy
run: |
sed -i 's/-mno-direct-extern-access //g' build/compile_commands.json