Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
name: coverage-report

- name: Go Coverage Comment
uses: fgrosse/go-coverage-report@v1.2.0
uses: fgrosse/go-coverage-report@v1.3.0
with:
coverage-artifact-name: coverage-report
coverage-file-name: coverage.txt
Expand Down Expand Up @@ -168,7 +168,7 @@
cache: true

- name: Build cross-platform binaries
run: |

Check failure on line 171 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2162:info:13:39: read without -r will mangle backslashes

Check failure on line 171 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:23:43: Double quote to prevent globbing and word splitting

Check failure on line 171 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:15:15: Double quote to prevent globbing and word splitting

Check failure on line 171 in .github/workflows/go-ci.yml

View workflow job for this annotation

GitHub Actions / Action Lint

shellcheck reported issue in this script: SC2086:info:14:13: Double quote to prevent globbing and word splitting
targets='${{ inputs.build_targets }}'
if [ "$targets" = "[]" ] || [ -z "$targets" ]; then
echo "No build targets specified, using defaults"
Expand Down
Loading