Skip to content

Use correct course name 'Connect and File Transfer' #3157

Use correct course name 'Connect and File Transfer'

Use correct course name 'Connect and File Transfer' #3157

# Check that there is correct spelling in all files
name: Check spelling
on:
push:
paths:
- .github/workflows/check_markdown.yaml
- .wordlist.txt
- .spellcheck.yml
- '**.md'
pull_request:
paths:
- .github/workflows/check_markdown.yaml
- .wordlist.txt
- .spellcheck.yml
- '**.md'
schedule:
- cron: "0 0 16 * *"
jobs:
check_spelling:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Remove files or folders that need not to be be spellchecked
run: |
rm -rf docs/evaluations
rm -rf docs/feedback
rm -rf docs/meeting_notes
rm -rf docs/retrospectives
rm -rf docs/reflections
rm -rf docs/sessions/unused
rm -rf docs/shared_documents
rm -rf docs/data/retrospects2026
- name: Remove file or folders that need to be corrected
run: |
rm docs/sessions/project_start/analysis_design/README.md
rm docs/sessions/project_start/analysis_design/Risk.md
rm docs/sessions/development_design/risk_and_requirements_exercise.md
- uses: igsekor/pyspelling-any@v0.0.2