Skip to content

docs: update README for 3.9 branch #27

docs: update README for 3.9 branch

docs: update README for 3.9 branch #27

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- stable/3.9
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