Skip to content

DOC: Spelling mistake fixed in User Guide: TaskLoader #671

DOC: Spelling mistake fixed in User Guide: TaskLoader

DOC: Spelling mistake fixed in User Guide: TaskLoader #671

Workflow file for this run

name: Code Style
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Check style
run: |
ruff check