[DOC] Fix a few small typos in the documentation #1039
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: 'Lint codebase' | |
on: | |
pull_request: | |
branches: | |
- dev | |
push: | |
branches: | |
- dev | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Install environment | |
run: | | |
python -m ensurepip | |
python -m pip install poetry | |
make env | |
- name: Lint code with black | |
run: make lint.black | |
- name: Lint code with isort | |
run: make lint.isort |