File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -119,15 +119,20 @@ jobs:
119
119
image : sonarqube:lts-community
120
120
ports :
121
121
- 9000:9000
122
- options : >-
123
- --health-cmd "curl --fail --user admin:admin http://127.0.0.1:9000/api/system/status || exit 1"
124
- --health-interval 10s
125
- --health-timeout 5s
126
- --health-retries 1000
122
+ volumes :
123
+ - ${{ github.workspace }}/sonarqube_data:/opt/sonarqube/data
124
+ # options: >-
125
+ # --health-cmd "curl --fail --user admin:admin http://127.0.0.1:9000/api/system/status || exit 1"
126
+ # --health-interval 10s
127
+ # --health-timeout 5s
128
+ # --health-retries 1000
127
129
steps :
128
130
- uses : actions/checkout@v4
129
131
with :
130
132
token : ${{ secrets.GITHUB_TOKEN }}
133
+ - name : List files in the repository
134
+ run : |
135
+ ls ${{ github.workspace }}
131
136
- run : ./test/waitForSonarQubeUp.sh
132
137
timeout-minutes : 3
133
138
- name : Run action on sample project
You can’t perform that action at this time.
0 commit comments