Skip to content

streaming: take out deprecated 2 #5

streaming: take out deprecated 2

streaming: take out deprecated 2 #5

Workflow file for this run

name: Main
on: [push, pull_request]
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.10.12
cache: "pip"
- name: "installation"
run: |
pip install -r requirements-dev.txt
- name: "black"
run: black . --check -l 120 --diff --color
- name: "mypy"
run: mypy src --ignore-missing-imports --implicit-optional