Skip to content

Merge pull request #31 from jorbush/fix-jwt #36

Merge pull request #31 from jorbush/fix-jwt

Merge pull request #31 from jorbush/fix-jwt #36

Workflow file for this run

name: Java Linter
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checkstyle:
runs-on: ubuntu-latest
defaults:
run:
working-directory: postrify-backend
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Run Checkstyle
run: ./mvnw checkstyle:check