Skip to content

Commit

Permalink
run tests on 10 11 12
Browse files Browse the repository at this point in the history
  • Loading branch information
quillcraftsman committed Nov 9, 2023
1 parent 7a85230 commit 9a3d4f5
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", '3.12' ]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 9a3d4f5

Please sign in to comment.