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

Add more deprecation warnings #148

Add more deprecation warnings

Add more deprecation warnings #148

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install .
- name: Run linter
run: pflake8 turbo
- name: Run formatter
run: black -S --target-version=py38 --line-length=100 --check . --exclude "doc|migrations"
- name: Run unit tests
run: pytest tests