Skip to content

Add include-what-you-use #87

Add include-what-you-use

Add include-what-you-use #87

Workflow file for this run

name: lint
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: 'ubuntu-24.04'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check pre-commit hooks
uses: ./.github/actions/devcontainer
with:
token: ${{ secrets.GITHUB_TOKEN }}
command: |
cmake -E make_directory build && cmake -B ./build -S .
pre-commit run --all-files --show-diff-on-failure