Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
python-test:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
Expand Down Expand Up @@ -36,10 +36,19 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
run: tox -e test
- name: Test with tox with postgresql
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
run: tox -e test-with-postgresql