Skip to content

extended checks

extended checks #102

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