diff --git a/.github/workflows/iwyu.yaml b/.github/workflows/iwyu.yaml deleted file mode 100644 index cb3845d..0000000 --- a/.github/workflows/iwyu.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: Check code with include what you use -on: [push] -jobs: - iwyu: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Prepare environment - run: sudo pip install compdb && sudo apt install -y iwyu clang-14 - - - name: Configure build - run: cmake -Bbuild -H$GITHUB_WORKSPACE - - - name: Create new compilation database - run: compdb -p build/ list > compile_commands.json - - - name: Run Include What You Use - run: iwyu_tool -p compile_commands.json