Skip to content

chore: setting up pyright type checking and fixing typing errors #29

chore: setting up pyright type checking and fixing typing errors

chore: setting up pyright type checking and fixing typing errors #29

Workflow file for this run

name: build
on:
push:
branches:
- main
- clean_up_repo
paths-ignore:
- '.devcontainer/**'
- '.github/**'
- '.vscode/**'
- '.gitignore'
- '*.md'
pull_request:
branches:
- main
paths-ignore:
- '.devcontainer/**'
- '.github/**'
- '.vscode/**'
- '.gitignore'
- '*.md'
# Allow this workflow to be called from other workflows
workflow_call:
inputs:
# Requires at least one input to be valid, but in practice we don't need any
dummy:
type: string
required: false
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --no-interaction
- name: Lint with flake8
run: poetry run flake8 .
- name: black code formatting
run: poetry run black . --check
- name: isort linting
run: poetry run isort . --check-only --diff
- name: type checking
run: poetry run pyright
- name: Run Unit Tests
run: make unit-test