Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Update README with deprecation info #24

Update README with deprecation info

Update README with deprecation info #24

Workflow file for this run

name: Lint and Test
on:
pull_request:
branches: [main]
jobs:
lint_and_test:
runs-on: ubuntu-latest
container: python:3.8.5-slim-buster
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: pip install -r requirements.dev.txt
- name: Lint
run: black --check . && flake8 . && isort --check .
- name: Test
run: coverage run -m unittest
- name: Coverage
run: coverage report