Removed unused files. #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |