build(deps): bump com.diffplug.spotless from 6.25.0 to 7.0.1 #325
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: CI Static Validations | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Spotless Check | |
run: ./gradlew spotlessCheck --stacktrace | |
- name: Lint | |
run: ./gradlew lint --stacktrace | |
- name: Upload ConstraintLayout Compose Lint Report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: constraintlayout-lint-report | |
path: compose/build/reports | |
call-build: | |
needs: validate | |
uses: ./.github/workflows/build.yml | |
secrets: inherit |