Skip to content

remove operands because of binOp (#57) #541

remove operands because of binOp (#57)

remove operands because of binOp (#57) #541

Workflow file for this run

name: CI - Pyright
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
env:
PYRIGHT_VERSION: 1.0
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install --upgrade pip
- name: Create a virtual environment
run: |
python -m venv venv
source venv/bin/activate
- name: Install the package
run: |
pip install .[dev]
- name: Pyright
uses: jakebailey/pyright-action@v2
with:
version: PATH
venv-path: venv