Skip to content

506 fix gitstats storage #8

506 fix gitstats storage

506 fix gitstats storage #8

Workflow file for this run

name: 📝 Spelling
on:
push:
branches: [master]
pull_request:
branches: [devel, test, master]
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up R dependencies
uses: r-lib/actions/setup-r-dependencies@v2
- name: Set up R
uses: r-lib/actions/setup-r@v2
- name: Install R packages
run: |
install.packages('devtools')
install.packages('spelling')
shell: Rscript {0}
- name: Run spelling check
run: |
Rscript -e "
library(spelling);
spelling_errors <- spell_check_package();
if (length(spelling_errors) > 0) {
print(spelling_errors);
quit(status = 1)
} else {
cat('No spelling errors found.\n')
}
"