Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Update README.md with deprecation notice #50

Update README.md with deprecation notice

Update README.md with deprecation notice #50

Workflow file for this run

name: ci
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pipenv'
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
- name: Install dependencies
run: pipenv sync --dev
- name: Check formatting
run: pipenv run python -m black . --check
- name: Test
run: pipenv run python run_tests.py