8000 Update dependencies and supported versions · PyGreSQL/PyGreSQL@487452e · GitHub
[go: up one dir, main page]

Skip to content

Update dependencies and supported versions #78

Update dependencies and supported versions

Update dependencies and supported versions #78

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