Skip to content

Commit

Permalink
test both Python 3.10 and 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnrd committed Jul 26, 2023
1 parent 7d925ff commit 0d5b0e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/py-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
strategy:
matrix:
platform: ${{ (inputs.all-platforms && fromJSON('["ubuntu-latest", "macos-latest", "windows-latest"]')) || fromJSON('["ubuntu-latest"]') }}
python-version: ${{ (inputs.all-platforms && fromJSON('["3.10", "3.11"]')) || fromJSON('["3.11"]') }}
runs-on: ${{ matrix.platform }}
steps:
- name: Check out lingua-franca repository
Expand All @@ -39,7 +40,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
- name: Install dependencies OS X
run: |
brew install coreutils
Expand Down

0 comments on commit 0d5b0e2

Please sign in to comment.