Bump com.diffplug.spotless from 6.22.0 to 6.23.0 #585
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: Build | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build_test_report: | |
name: Build → Test → Report | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-java | |
- uses: ./.github/actions/setup-gradle | |
- name: Build | |
run: ./gradlew build --stacktrace | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-results | |
path: processor/build/test-results/test | |
- name: Upload test reports | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-reports | |
path: processor/build/reports/tests/test | |
- name: Build Maven artifact | |
run: ./gradlew publishAllPublicationsToMavenLocalRepository --stacktrace | |
- name: Upload Maven artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: maven | |
path: build/.m2/repository |