This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
RELEASE: v3.0.15 #155
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
# HMS Networks Solution Center | |
# Code Format Test Action for Maven-based Ewon ETK Projects | |
# Version: 2.0 | |
# | |
# This action is configured to automatically run when a push | |
# is made or pull request is merged to the `main` or `master` | |
# branch. | |
name: Code Format Test | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # v2 minimum required | |
- uses: axel-op/googlejavaformat-action@v3 | |
with: | |
args: "--dry-run --skip-sorting-imports --set-exit-if-changed" |