Skip to content

Commit

Permalink
feat: github action 자바 코드 형식
Browse files Browse the repository at this point in the history
  • Loading branch information
GaBaljaintheroom committed Jan 8, 2024
1 parent 198fc45 commit bbaed34
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions backend/core/.github/workflows/google-java-format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Format

on: [ push, pull_request ]

jobs:

formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: axel-op/googlejavaformat-action@v3
with:
args: "--replace"
skip-commit: true
- name: Print diffs
run: git --no-pager diff --exit-code

0 comments on commit bbaed34

Please sign in to comment.