Skip to content

Commit

Permalink
Workflow for spotless added
Browse files Browse the repository at this point in the history
  • Loading branch information
mulla028 committed Nov 13, 2024
1 parent f0381ce commit 7b7b8ad
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/spotless.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Spotless Check

on:
pull_request:
branches:
- main

jobs:
spotless-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '22'

- name: Install dependencies and run Spotless check
run: mvn spotless:check

0 comments on commit 7b7b8ad

Please sign in to comment.