Skip to content

Commit 08a0ea2

Browse files
authored
Merge pull request #3 from SocialSchools/feat/add-more-python-support-github-actions
Add support for more Python versions on Github actions and last two versions on Ubuntu
2 parents 275e0b0 + 3c17be9 commit 08a0ea2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,15 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
8-
runs-on: ubuntu-latest
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
python-version: [3.8, 3.9, pypy3]
12+
os: [
13+
ubuntu-20.04,
14+
ubuntu-18.04,
15+
]
916

1017
services:
1118
postgres:

0 commit comments

Comments
 (0)