From 57e952856bc39ee66c49c9f75a578cfc2b46175c Mon Sep 17 00:00:00 2001 From: Joonas Kerttula Date: Fri, 30 Aug 2024 13:06:39 +0300 Subject: [PATCH] ci: split obj-c and java formatting checks to separate jobs --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ecd698c..2f79751 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,19 +39,26 @@ jobs: - name: Typecheck files run: yarn test:types - check-formatting: + check-objc-formatting: runs-on: ubuntu-latest timeout-minutes: 30 steps: - name: Checkout uses: actions/checkout@v4 - - name: Install clang-format and google-java-format + - name: Install clang-format run: sudo apt-get install clang-format - name: Check Objective-C formatting run: ./scripts/format-objc.sh --check + check-java-formatting: + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install JDK uses: actions/setup-java@v3 with: