Skip to content

Removed unused files. #12

Removed unused files.

Removed unused files. #12

Workflow file for this run

name: Pyright in virtual environment
on:
workflow_dispatch:
pull_request:
jobs:
pyright:
name: pyright
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- run: |
sudo apt-get install libgraphviz-dev
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v2