From 3de050e9c03e553f7ae3f780f6bd080a30ae123e Mon Sep 17 00:00:00 2001 From: Mikaƫl Capelle Date: Fri, 7 Jul 2023 18:22:01 +0200 Subject: Create test action to build. --- .github/workflows/linting.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/linting.yml (limited to '.github/workflows/linting.yml') diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml new file mode 100644 index 00000000..99427693 --- /dev/null +++ b/.github/workflows/linting.yml @@ -0,0 +1,12 @@ +name: Lint ModOrganizer 2 +on: [push] +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run clang-format + uses: jidicula/clang-format-action@v4.11.0 + with: + clang-format-version: "15" + check-path: "." -- cgit v1.3.1