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 Aug 30, 2024
1 parent e668ac6 commit 57e9528
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 57e9528

Please sign in to comment.