CORE-69: Update google-api-services-admin-directory from directory_v1-rev20250804-2.0.0 to directory_v1-rev20250916-2.0.0 #411
Workflow file for this run
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
name: Check formatting for modified files with scalafmt | |
on: | |
pull_request: | |
paths-ignore: ['**.md'] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: sbt/setup-sbt@v1 | |
with: | |
fetch-depth: 2 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v5 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: sbt | |
- name: Check formatting for modified files | |
run: | | |
sbt scalafmtCheckAll |