README.md refer to the present courses #1
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
# Check that there is correct spelling in all files | |
# | |
# Errors are reported via an Issue being created, | |
# instead of via en email to all repository Watchers | |
name: Check spelling | |
# Only run this on the main branch, or with Pull Requests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
check_spelling: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Set up Git repository | |
uses: actions/[email protected] | |
- name: Remove folders that do not care about spelling | |
run: | | |
rm -rf evaluations | |
- uses: igsekor/[email protected] |