Skip to content

Bump psycopg from 3.2.9 to 3.3.3 in the python-dependencies group #2

Bump psycopg from 3.2.9 to 3.3.3 in the python-dependencies group

Bump psycopg from 3.2.9 to 3.3.3 in the python-dependencies group #2

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Run lint suite
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
cache-dependency-path: requirements.txt
- name: Install just
uses: extractions/setup-just@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Install pre-commit hooks
run: pre-commit install --install-hooks
- name: Run lint
run: just lint