Skip to content

Commit 8ea0541

Browse files
committed
Test with multiple Python versions on CI
1 parent dcf931c commit 8ea0541

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ on: [push, pull_request]
33
jobs:
44
build:
55
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
python: [3.11, 3.6]
610
steps:
711
- uses: actions/checkout@v3
812
- uses: actions/setup-python@v4
913
with:
10-
python-version: 3.11
14+
python-version: ${{ matrix.python }}
1115
- run: pip install -r requirements.txt
1216
- uses: ankane/setup-postgres@v1
1317
with:

0 commit comments

Comments
 (0)