Skip to content

Test PR

Test PR #1

Workflow file for this run

name: build
on:
pull_request_target:
paths:
- '**.cpp'
- '**.h'
- '.github/workflows/clang-tidy.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install Dependencies
shell: bash
run: |
sudo apt-get update -qq
sudo apt-get install -y \
libc++-dev libc++abi-dev \
libpixman-1-dev libfreetype6-dev libharfbuzz-dev zlib1g-dev \
libx11-dev libxcursor-dev libxi-dev libgl1-mesa-dev
- uses: ilammy/msvc-dev-cmd@v1
if: runner.os == 'Windows'
- uses: turtlesec-no/get-ninja@main
- uses: ZedThree/[email protected]
id: review
with:
token: ${{ secrets.CLANG_TIDY_TOKEN }}
cmake_command: |
cmake . -G Ninja \
-DCMAKE_BUILD_TYPE=Debug \
-DLAF_BACKEND=none
- uses: ZedThree/clang-tidy-review/[email protected]
id: upload-review
- if: steps.review.outputs.total_comments > 0
run: exit 1