Skip to content

Update urlcheck.yml

Update urlcheck.yml #3

Workflow file for this run

on:
push:
branches: [hrm_test]
pull_request:
branches: [hrm_test]
# release:
# types: [published]
workflow_dispatch:
name: Check URLs
on: [push, pull_request]

Check failure on line 13 in .github/workflows/urlcheck.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/urlcheck.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
jobs:
url-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up R
uses: r-lib/actions/setup-r@v2
- name: Install urlchecker
run: |
Rscript -e 'install.packages("urlchecker", repos="https://cloud.r-project.org")'
- name: Run urlchecker
run: |
Rscript -e 'urlchecker::url_check(".")'