Add robot-name
exercise (#373)
#57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of the dependencies and run the linter | |
# | |
# Requires scripts: | |
# - bin/run_lints.R | |
name: Lint exercises | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
- uses: r-lib/actions/setup-r@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 | |
with: | |
r-version: 4.3.1 | |
- uses: r-lib/actions/setup-r-dependencies@e6be4b3706e0f39bc7a4cf4496a5f2c4cb840040 | |
with: | |
cache-version: 1 | |
packages: | | |
lintr | |
- name: Run exercism/r ci pre-check (checks config, lint code) for all exercises | |
run: | | |
source("bin/run_lints.R") | |
shell: Rscript {0} |