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 dc250bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_assignment_dict_from_privilege_assignments(
def get_permission_changes_principals(
assignments_on_databricks_dict: Dict[str, List[Privilege]],
assignments_from_properties_dict: Dict[str, List[Privilege]],
) -> list[PermissionsChange]:
) -> List[PermissionsChange]:
"""See if there are new principals that need to be added"""
permission_changes = []

Expand Down

0 comments on commit dc250bb

Please sign in to comment.