[java_api] [coco_detection_android_demo] Updating build.gradle to build libraries in Linux for android deployment #2437
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Style | |
on: | |
push: | |
paths: | |
- 'modules/java_api/**' | |
pull_request: | |
paths: | |
- '.github/workflows/code_style.yml' | |
- 'modules/java_api/**' | |
permissions: read-all | |
jobs: | |
Java: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Fix code java style | |
uses: axel-op/googlejavaformat-action@dbff853fb823671ec5781365233bf86543b13215 # v3 | |
with: | |
args: "--set-exit-if-changed -a -i" | |
commit-message: "[github actions] Apply google-java-format code style fixes" |