Skip to content

Do not introduce fake inter-stream dependencies #94

Do not introduce fake inter-stream dependencies

Do not introduce fake inter-stream dependencies #94

Workflow file for this run

name: Python Linting
on: [push, pull_request]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
pip install .
- name: Run ruff
run: ruff format --check --diff .
- name: Run Pyre Check
run: pyre check