Skip to content

Update docs for 3.9 branch #26

Update docs for 3.9 branch

Update docs for 3.9 branch #26

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: python3 -m pip install tox
- name: Run linters
run: tox -e pep8
unit-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
run: tox -e py3
deploy:
uses: ./.github/workflows/deploy.yml