Skip to content

Commit

Permalink
chore: shell
Browse files Browse the repository at this point in the history
  • Loading branch information
RyuNen344 committed Oct 24, 2024
1 parent 48cad08 commit 959b40c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
run: |
./gradlew lintFix --continue;
./gradlew detekt -PautoCorrect --continue;
TMPFILE=$(mktemp)
git diff >"${TMPFILE}"
git stash -u && git stash drop
reviewdog -f=diff -f.diff.strip=1 -reporter=github-pr-review < "${TMPFILE}"
TMPFILE=$(mktemp);
git diff >"${TMPFILE}";
git stash -u || git stash drop;
cat "${TMPFILE}" | reviewdog -f=diff -f.diff.strip=1 -reporter=github-pr-review;
unit-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 959b40c

Please sign in to comment.