Skip to content

Commit

Permalink
expand testing to python 3.6 to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeSchiff authored Jul 1, 2024
1 parent 597a633 commit d07e5bb
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/python-app.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python application
name: tests

on:
push:
Expand All @@ -17,11 +14,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

name: Test
name: Test iter
runs-on: ${{ matrix.os }}

steps:
Expand Down

0 comments on commit d07e5bb

Please sign in to comment.