diff --git a/.github/workflows/spelling.yaml b/.github/workflows/spelling.yaml deleted file mode 100644 index 4faf909..0000000 --- a/.github/workflows/spelling.yaml +++ /dev/null @@ -1,40 +0,0 @@ -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 - uses: r-lib/actions/setup-r@v2 - - - name: Set up R dependencies - uses: r-lib/actions/setup-r-dependencies@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') - } - "