Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

add deprecation notice #19

add deprecation notice

add deprecation notice #19

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- '*'
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Static check
run: tox -e static_check
- name: Run tests
run: tox -e py