From 67f6cde65efe544e347de2f332748201a809ca77 Mon Sep 17 00:00:00 2001 From: Victor Cornille Date: Fri, 13 Sep 2024 22:15:32 +0200 Subject: [PATCH] - | Take away the workflow --- .github/workflows/main.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index b00abed..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: format before push - -on: - push: - branches: - - main - -jobs: - format: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Install clang-format - run: sudo apt install -y clang-format - - - name: Run clang-format - run: find . -name "*.c" -o -name "*.h" | xargs clang-format -i --style=LLVM