Skip to content

Update actions/checkout action to v4.2.2 #55

Update actions/checkout action to v4.2.2

Update actions/checkout action to v4.2.2 #55

Workflow file for this run

name: Test action-clang-tidy workflow
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
reporter: [ github-check, github-pr-review, github-pr-annotations ]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: CMake
env:
CC: clang
working-directory: test
run: cmake -B ./build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- uses: ./
with:
workdir: ./test/build
reporter: ${{ matrix.reporter }}
fail_on_error: false