18 lines
460 B
YAML
18 lines
460 B
YAML
name: Format
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
|
|
formatting:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4 # v2 minimum required
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin' # See 'Supported distributions' for available options
|
|
java-version: '21'
|
|
|
|
- uses: axel-op/googlejavaformat-action@v3
|
|
with:
|
|
args: "--set-exit-if-changed --skip-sorting-imports --aosp -n" |