Skip to content

Bump actions/checkout from 3 to 4 #745

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #745

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python: "3.8"
psycopg: "psycopg2"
- python: "3.12"
psycopg: "psycopg3"
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Add fr_FR and zh_TW for test purposes
run: |
sudo locale-gen fr_FR zh_TW.EUC-TW
sudo update-locale
- name: Test
run: tox -e py-${{ matrix.psycopg }}