Announce PlasmaPy Summer School 2024 #23
Workflow file for this run
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
name: Codespell | |
on: | |
push: | |
branches: | |
- src | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
spellcheck: | |
name: Codespell | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Install nox | |
run: python -m pip install --progress-bar off --upgrade nox | |
- name: Run tests | |
run: nox -s codespell --forcecolor |