Skip to content

Set up dependabot

Set up dependabot #142

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
name: lint
jobs:
lint:
# we get errors about pak not supporting 24.04 for sysdeps with ubuntu-latest
# https://github.com/r-lib/pak/blob/683f1be2cc2662d8e4073167910a1dd2f1e63b89/R/system-requirements.R#L194-L204
runs-on: ubuntu-22.04
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
RENV_PATHS_ROOT: ~/.local/share/renv/
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: "Setup Lesson Engine"
uses: carpentries/actions/setup-sandpaper@main
with:
cache-version: ${{ secrets.CACHE_VERSION }}
- name: "Setup Package Cache"
uses: carpentries/actions/setup-lesson-deps@main
with:
cache-version: ${{ secrets.CACHE_VERSION }}
- uses: r-lib/actions/setup-r-dependencies@v2
with:
packages: any::lintr
- name: Lint
run: lintr::lint_dir("episodes")
shell: Rscript {0}
env:
LINTR_ERROR_ON_LINT: true