From 8abe89c1102fe7fdb7ce29c2f6db9ec87dd8c3b1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 21:03:57 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/sirosen/check-jsonschema: 0.19.2 → 0.28.6](https://github.com/sirosen/check-jsonschema/compare/0.19.2...0.28.6) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3cd3300..f8c9cfa 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,7 @@ repos: - id: cmake-format - repo: https://github.com/sirosen/check-jsonschema - rev: 0.19.2 + rev: 0.28.6 hooks: - id: check-jsonschema name: "Check Github Workflows" From 9b300b4bfd6a790beeedb466a27866746ab5ceb9 Mon Sep 17 00:00:00 2001 From: Giorgos Xanthakis Date: Fri, 5 Jul 2024 13:47:29 +0300 Subject: [PATCH 2/2] Update pre-commit --- .github/workflows/iwyu.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/iwyu.yaml diff --git a/.github/workflows/iwyu.yaml b/.github/workflows/iwyu.yaml deleted file mode 100644 index 6b9884a..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-9 - - - 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