Add basic doc on making dep changes based on previously written one #75
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: Check spelling in documentation | |
on: [push, pull_request] | |
jobs: | |
check_doc_spelling: | |
name: Check spelling in documentation | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout repository | |
- uses: actions/checkout@v2 | |
# Setup Python and install pre-commit | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
# Run pre-commit | |
- name: Check spelling in documentation | |
run: | | |
make spelling |