From 015f17cd258cc336fa509b190814f6319d19bbbc Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Sat, 30 Apr 2022 22:53:34 +0300 Subject: Add formatting test workflow --- .github/workflows/format.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/format.yml (limited to '.github') diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml new file mode 100644 index 00000000..97ab11e4 --- /dev/null +++ b/.github/workflows/format.yml @@ -0,0 +1,34 @@ +name: Code formatting + +on: + pull_request: + branches: [ master, develop ] + +jobs: + test-format: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 1000 + + - name: Configure git + run: | + git config --global user.email "-" + git config --global user.name "Autoformatter" + git fetch origin "$GITHUB_BASE_REF":"$GITHUB_BASE_REF" --depth=1000 + + - name: Install clang-format + run: | + sudo apt-get update + sudo apt-get -y install clang-format-12 + + - name: Check formatting + run: tests/test-format.sh "$GITHUB_BASE_REF" + + - name: Upload patches + uses: actions/upload-artifact@v3 + if: failure() + with: + name: Patches + path: ./*.patch -- cgit v1.2.3