Remove usage of cursor in DuckDB #541
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Aiosql Package | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# https://github.com/actions/python-versions (versions-manifest.json) | |
# https://downloads.python.org/pypy/versions.json | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install .[dev,dev-postgres,dev-mysql,dev-sqlite,dev-duckdb] | |
- name: Check types with mypy | |
run: make VENV= INSTALL= check.mypy | |
- name: Check types with pyright | |
run: make VENV= INSTALL= check.pyright | |
- name: Lint with ruff | |
run: make VENV= INSTALL= check.ruff | |
- name: Test with pytest and databases | |
run: make VENV= INSTALL= check.pytest | |
- name: Coverage tests | |
run: make VENV= INSTALL= check.coverage | |
- name: Check RST files | |
run: make VENV= INSTALL= check.rstcheck |