Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #234 Update GHA #240

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Create link_check.yaml
bms63 authored Mar 7, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 92c601f2ea22338897527d7e7a559f3694453ac1
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()