Skip to content

Fixes for gaps in the ELM visitor #10

Fixes for gaps in the ELM visitor

Fixes for gaps in the ELM visitor #10

Workflow file for this run

name: gradle spotlessCheck (Formatting)
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
format-check:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Run gradle spotlessCheck
uses: gradle/gradle-build-action@v2
with:
arguments: spotlessCheck
build-root-directory: Src/java
- uses: mshick/add-pr-comment@v2
if: always()
with:
message-success: |
Formatting check succeeded!
message-failure: |
**This Pull Request has failed the formatting check**
Please run `gradlew spotlessApply` to fix the formatting issues.