summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Talbert <swt@techie.net>2022-01-12 09:23:41 -0500
committerScott Talbert <swt@techie.net>2022-01-12 09:30:09 -0500
commit5b4738285e39285976a768f8513face7bd849f98 (patch)
tree6955e3194d089e577c0dfe1ca4d392bde7c59f70
parent3e792014dcd932e763838ed4c84aa7737d30edcd (diff)
downloadpycurl-5b4738285e39285976a768f8513face7bd849f98.tar.gz
Run CI on all currently supported Python versions
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a2ad9e4..99ec64d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -13,13 +13,16 @@ jobs:
build:
runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- - name: Set up Python 3.9
+ - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
- python-version: 3.9
+ python-version: ${{ matrix.python-version }}
- name: Install packages
run: sudo apt-get install libcurl4-gnutls-dev libgnutls28-dev
- name: Install dependencies