Skip to content

Commit

Permalink
ci(python): Add tests with Python 10
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Aug 16, 2023
1 parent 5066d05 commit 85c6c49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ jobs:
name: Unit tests
strategy:
matrix:
python-version: ['3.7', '3.10']
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: ${{ matrix.python-version }}
- name: install python dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 85c6c49

Please sign in to comment.