This repository was archived by the owner on Aug 25, 2026. It is now read-only.
[pre-commit.ci] pre-commit autoupdate #9489
This file contains hidden or 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
| # Copyright 2023-2025 Broadcom | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Google Java Format | |
| on: | |
| push: | |
| branches: [ "**" ] | |
| jobs: | |
| formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 # v2 minimum required | |
| - uses: axel-op/googlejavaformat-action@v3 | |
| with: | |
| args: "--skip-sorting-imports --replace" |