Skip to content

Commit

Permalink
ci: remove clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
futrime committed Jan 29, 2024
1 parent 4a10c7b commit 4d8c3c0
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,42 +53,3 @@ jobs:
run: |
Get-ChildItem src/ -Filter *.cpp -Recurse | ForEach-Object { clang-format -i -Werror $_.FullName }
Get-ChildItem src/ -Filter *.h -Recurse | ForEach-Object { clang-format -i -Werror $_.FullName }
clang-tidy:
runs-on: windows-latest
strategy:
matrix:
backend:
# - libnode
- lua
# - python310
- quickjs
steps:
- uses: actions/checkout@v4

- uses: xmake-io/github-action-setup-xmake@v1

- uses: actions/cache@v4
with:
path: |
~/AppData/Local/.xmake
key: xmake-${{ hashFiles('xmake.lua') }}
restore-keys: |
xmake-
- run: |
xmake repo -u
- run: |
xmake f -a x64 -m release -p windows -v -y --backend=${{ matrix.backend }}
- run: |
xmake project -k compile_commands
- run: |
choco install llvm -y --version=17.0.6
- name: clang-tidy
run: |
Get-ChildItem src/ -Filter *.cpp -Recurse | ForEach-Object { clang-tidy $_.FullName }
Get-ChildItem src/ -Filter *.h -Recurse | ForEach-Object { clang-tidy $_.FullName }

0 comments on commit 4d8c3c0

Please sign in to comment.