Skip to content

Update documentation to match implementation #448

Update documentation to match implementation

Update documentation to match implementation #448

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint using tox
name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions flake8
- name: Lint
run: |
flake8 tasks3 tests
- name: Test with tox
run: |
tox