Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed May 22, 2024
1 parent c318699 commit 13efe42
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ jobs:

- name: Check URLs with urlchecker 🔬
run: |
if (nr <- nrow(print(urlchecker::url_check(".")))) stop(nr, " bad URL(s)")
bad_urls <- nrow(print(urlchecker::url_check(".")))
if (bad_urls > 0) {
stop("Looks like a total of ", bad_urls, " URL(s) were found! Please correct them.")
}
shell: Rscript {0}
working-directory: ${{ inputs.package-subdirectory }}

0 comments on commit 13efe42

Please sign in to comment.