Skip to content

Bump actions/checkout from 5.0.0 to 6.0.0 (#408) #631

Bump actions/checkout from 5.0.0 to 6.0.0 (#408)

Bump actions/checkout from 5.0.0 to 6.0.0 (#408) #631

Workflow file for this run

# This workflow will do a clean install of the dependencies and run tests across different versions
#
# Requires scripts:
# - bin/run_tests.R
name: Exercise tests
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
- uses: r-lib/actions/setup-r@6f6e5bc62fba3a704f74e7ad7ef7676c5c6a2590
with:
r-version: 4.3.1
- uses: r-lib/actions/setup-r-dependencies@6f6e5bc62fba3a704f74e7ad7ef7676c5c6a2590
with:
cache-version: 1
packages: |
testthat
jsonlite
dplyr
stringr
readr
purrr
tibble
- name: Run exercism/r ci (runs tests) for all exercises
run: |
source("bin/run_tests.R")
shell: Rscript {0}