Skip to content

Commit

Permalink
Create link_check.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
bms63 authored Mar 7, 2025
1 parent 4ee5564 commit 92c601f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/link_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Link Checker

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
check-links:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up R
uses: r-lib/actions/setup-r@v2

- name: Install dependencies
run: |
install.packages('remotes')
remotes::install_cran('urlchecker')
- name: Check links
run: |
urlchecker::url_check()

0 comments on commit 92c601f

Please sign in to comment.