File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 59
59
jre : 11
60
60
os : ubuntu-latest
61
61
shfmt-version : v3.8.0
62
+ - kind : idea
63
+ jre : 11
64
+ os : ubuntu-latest
62
65
runs-on : ${{ matrix.os }}
63
66
steps :
64
67
- name : Checkout
91
94
- name : Test shfmt
92
95
if : matrix.kind == 'shfmt'
93
96
run : ./gradlew testShfmt
97
+ - name : Test idea
98
+ if : matrix.kind == 'idea'
99
+ run : |
100
+ download_link=$(curl https://data.services.jetbrains.com/products/releases\?code\=IIC\&latest\=true\&type\=release | jq -r '.IIC[0].downloads.linux.link')
101
+ curl --location "$download_link" -o idea.tar.gz
102
+ tar -xf idea.tar.gz
103
+ cd idea-IC*
104
+ export PATH=${PATH}:$(pwd)/bin
105
+ cd ..
106
+ ./gradlew testIdea
94
107
- name : junit result
95
108
uses : mikepenz/action-junit-report@v5
96
109
if : always() # always run even if the previous step fails
You can’t perform that action at this time.
0 commit comments