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 50d4aa9 commit 0f6d881
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ 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 0f6d881

Please sign in to comment.