Skip to content

Commit 641a3b2

Browse files
committed
Try to fix the CI
1 parent 8d2f4df commit 641a3b2

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/pr-validation.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ jobs:
3434
run: go mod tidy -e || true
3535

3636
- name: Install golangci-lint
37-
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
38-
39-
- name: Add Go bin to PATH
40-
run: echo "${HOME}/go/bin" >> $GITHUB_PATH
37+
run: |
38+
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
39+
echo "${HOME}/go/bin" >> $GITHUB_PATH
40+
which golangci-lint
41+
golangci-lint --version
4142
4243
- name: Lint Go code
4344
run: ./scripts/lint-go.sh ci

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,12 @@ USAGE:
288288
Get the status of async-profiler on a running Java application
289289

290290
OPTIONS:
291+
-local-dir -ld, the local directory path that the dump/JFR/... file will be saved to,
292+
defaults to the current directory
293+
-no-download -nd, don't download the heap dump/JFR/... file to local, only keep it in the
294+
container, implies '--keep'
295+
-verbose -v, enable verbose output for the plugin
296+
-app-instance-index -i [index], select to which instance of the app to connect
291297
-args -a, Miscellaneous arguments to pass to the command (if supported) in the
292298
container, be aware to end it with a space if it is a simple option. For
293299
commands that create arbitrary files (jcmd, asprof), the environment
@@ -299,12 +305,6 @@ OPTIONS:
299305
-dry-run -n, just output to command line what would be executed
300306
-keep -k, keep the heap dump in the container; by default the heap dump/JFR/... will
301307
be deleted from the container's filesystem after being downloaded
302-
-local-dir -ld, the local directory path that the dump/JFR/... file will be saved to,
303-
defaults to the current directory
304-
-no-download -nd, don't download the heap dump/JFR/... file to local, only keep it in the
305-
container, implies '--keep'
306-
-verbose -v, enable verbose output for the plugin
307-
-app-instance-index -i [index], select to which instance of the app to connect
308308

309309
</pre>
310310

0 commit comments

Comments
 (0)