chore: Remove now unneeded update step chore: Align build images in workflows chore: Add documentation on broken images chore: Upgrade Ubuntu build image chore: Add build step to update OpenSSL
28 lines
No EOL
603 B
YAML
28 lines
No EOL
603 B
YAML
name: Check formatting
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
cancel-in-progress: true
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
jobs:
|
|
check-formatting:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 21
|
|
- uses: gradle/actions/setup-gradle@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
- name: Run formatting check
|
|
run: ./gradlew spotlessCheck |