fix(deps): update code.cloudfoundry.org/loggregator-agent-release/src digest to b0d2947 #11017
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: Check Java Code | |
on: | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
concurrency: | |
group: "${{ github.workflow }}/${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
code-style: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/cloudfoundry/app-autoscaler-release-tools:main | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check Code Formatting | |
run: | | |
sh ./style-guide/google-format-ci-v0.1.sh | |
env: | |
GOOGLE_JAR_VERSION: 1.22.0 | |
GOOGLE_JAR_NAME: google-java-format-1.22.0-all-deps.jar | |
- name: Checkstyle | |
run: | | |
pushd src/scheduler | |
mvn --no-transfer-progress jxr:jxr | |
mvn --no-transfer-progress checkstyle:checkstyle | |
popd | |
- name: Publish Results on Pull Request | |
run: | | |
go run src/fmt_chkstyle/format_checkstyle.go |