Skip to content

Fixed changes I don't want merged #3

Fixed changes I don't want merged

Fixed changes I don't want merged #3

Workflow file for this run

name: Lint
# Controls when the action will run. Triggers the workflow on push to all branches.
on: [ push ]
jobs:
lint:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
# Executes linting
# If this fails, run ./gradlew spotlessApply locally to fix formatting
- run: ./gradlew spotlessCheck