Skip to content

Commit

Permalink
Merge pull request #387 from GoSecure/ci-add-latest-python
Browse files Browse the repository at this point in the history
More python testing in our CI
  • Loading branch information
obilodeau committed Jan 18, 2022
2 parents 1c15f7d + 4669bfb commit 16836f5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,17 @@ jobs:

install-and-test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
# Lets try to keep testing an LTS python and latest python
python-version: ['3.7', '3.10']

name: Install and test on Ubuntu with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
python-version: ${{ matrix.python-version }}
architecture: 'x64'

- name: Python version
Expand Down

0 comments on commit 16836f5

Please sign in to comment.