Skip to content

Commit

Permalink
test all python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanRademaker committed Nov 28, 2023
1 parent 7ac3cfd commit 7893747
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ name: Python package

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand All @@ -38,7 +38,7 @@ jobs:
uses: mikepenz/action-junit-report@v2
if: always() # always run even if the previous step fails
with:
report_paths: 'aws-lambda/junit/report.xml'
report_paths: "aws-lambda/junit/report.xml"
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit 7893747

Please sign in to comment.