Skip to content

fix: substitution double brackets were being detected incorrectly #25

fix: substitution double brackets were being detected incorrectly

fix: substitution double brackets were being detected incorrectly #25

Workflow file for this run

name: Python package
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 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 }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv run pip install pyright
pipenv sync
- name: Perform typechecking
run: |
pipenv run python -m pyright
- name: Perform tests
run: |
pipenv run python -m unittest tests/*.py