We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2efda81 commit 5fdbf67Copy full SHA for 5fdbf67
.github/workflows/check.yml
@@ -14,21 +14,13 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
- - name: Cache IDEA downloading
18
- id: cache-idea
19
- uses: actions/cache@v4
20
- with:
21
- path: ~/idea-IC-*
22
- key: ${{ runner.os }}-ideaIC-2024.3.1.1
+ - uses: actions/checkout@v4
23
24
- - name: Install IntelliJ IDEA
25
- if: steps.cache-idea.outputs.cache-hit != 'true'
26
- run: curl https://download.jetbrains.com/idea/ideaIC-2024.3.1.1.tar.gz -L | tar -xzf - -C ~
27
-
28
- - uses: actions/checkout@v3
+ - uses: iseki0/idea-download-action@master
29
30
- name: Reformat
31
- run: ~/idea-IC-*/bin/format.sh -r -m *.kt,*.kts,*.java .
+ run: format -r -m *.kt,*.kts,*.java .
+
32
- name: Check
33
run: git diff --exit-code --color
34
0 commit comments