Skip to content

[Feature/53] Docker file ์ž‘์„ฑ ๋ฐ build #21

[Feature/53] Docker file ์ž‘์„ฑ ๋ฐ build

[Feature/53] Docker file ์ž‘์„ฑ ๋ฐ build #21

Workflow file for this run

name: ๐ŸŽจ Checkstyle
on:
pull_request:
branches: [ main ]
types: [ opened, synchronize, reopened ]
jobs:
checkstyle:
name: checkstyle
runs-on: ubuntu-latest # ubuntu-22.04
strategy:
matrix:
java: [ 17 ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
architecture: x64
cache: "gradle"
- name: Run Checkstyle
uses: nikitasavinov/checkstyle-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: 'github-pr-review'
tool_name: 'Checkstyle for Java'
checkstyle_config: lint-config/namo-checkstyle-rules.xml
properties_file: lint-config/additional.properties
level: warning