Skip to content

Commit

Permalink
ci: test on both python 3.7 and 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasstraka committed Sep 5, 2023
1 parent 7bb68e3 commit 86b623f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
python: ['3.7', '3.10']

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: ${{matrix.python}}
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
Expand Down

0 comments on commit 86b623f

Please sign in to comment.