8000 Make it compile with latest MSVSC · PyGreSQL/PyGreSQL@fae41b5 · GitHub
[go: up one dir, main page]

Skip to content

Make it compile with latest MSVSC #81

Make it compile with latest MSVSC

Make it compile with latest MSVSC #81

Workflow file for this run

name: Run PyGreSQL quality checks
on:
push:
pull_request:
jobs:
checks:
name: Quality checks run
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install tox
run: pip install tox
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Run quality checks
run: tox -e ruff,mypy,cformat,docs
timeout-minutes: 5
0