Skip to content

fix: make aggregate cursor closable #98

fix: make aggregate cursor closable

fix: make aggregate cursor closable #98

Workflow file for this run

name: Check codebase
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ["3.7", "3.11"]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Lint with ruff and test with pytest
run: |
make check
make test