8000 Update year of copyright · PyGreSQL/PyGreSQL@ca4392e · GitHub
[go: up one dir, main page]

Skip to content
F0FD

Update year of copyright #82

Update year of copyright

Update year of copyright #82

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