Skip to content

Commit

Permalink
Make GitHub workflow test also on Python 3.10--3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
skangas authored and gauteh committed Sep 2, 2023
1 parent 9293661 commit 29a328c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,18 @@ jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Set up Python 3.9
uses: actions/setup-python@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}
- name: Install notmuch
run: |
sudo apt-get install notmuch
Expand Down

0 comments on commit 29a328c

Please sign in to comment.