Skip to content

Commit

Permalink
Add 3.12 to static checking
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLuttenberger committed Dec 18, 2023
1 parent 35e550a commit 1f18afc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/static-checking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.8", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -27,18 +27,27 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
if: ${{ matrix.python-version != '3.12' }}
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry config virtualenvs.create false --local
poetry install --all-extras -vvv
- name: Install Requirements
if: ${{ matrix.python-version == '3.12' }}
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry config virtualenvs.create false --local
poetry install --extras "redshift mysql postgres sqlserver oracle gremlin sparql opencypher opensearch openpyxl progressbar deltalake geopandas" -vvv
- name: Black style
run: black --check .
- name: ruff check
run: |
ruff . --ignore "PL" --ignore "D"
ruff awswrangler
- name: mypy check
if: ${{ matrix.python-version != '3.12' }}
run: mypy --install-types --non-interactive awswrangler
- name: Pylint Lint
run: pylint -j 0 --disable=all --enable=R0913,R0915 awswrangler
Expand Down

0 comments on commit 1f18afc

Please sign in to comment.