Skip to content

Commit f51aacd

Browse files
authored
Add support for Python 3.11 in test suite (#30)
1 parent 743df98 commit f51aacd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
name: Test suite
22

33
on:
4+
workflow_dispatch:
45
push:
5-
branches: ["main"]
6+
branches: [ "main" ]
67
pull_request:
7-
branches: ["main"]
8+
branches: [ "main" ]
89

910
jobs:
1011
tests:
1112
name: "Python ${{ matrix.python-version }}"
1213
runs-on: ubuntu-latest
1314
strategy:
1415
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10"]
16+
python-version: [ "3.7", "3.8", "3.9", "3.10","3.11" ]
1617

1718
services:
1819
postgres:

0 commit comments

Comments
 (0)