Skip to content

Commit

Permalink
ci: split obj-c and java formatting checks to separate jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
jokerttu committed Sep 12, 2024
1 parent ac6a86e commit 4b78125
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4b78125

Please sign in to comment.