Skip to content

Bump lints from 4.0.0 to 5.0.0 in /image-rotator in the dart-dependencies group #114

Bump lints from 4.0.0 to 5.0.0 in /image-rotator in the dart-dependencies group

Bump lints from 4.0.0 to 5.0.0 in /image-rotator in the dart-dependencies group #114

Workflow file for this run

name: Python/Parser - CI
on: [pull_request]
defaults:
run:
working-directory: parser
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11.x]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pipenv wheel
pipenv install --deploy --dev
- name: Test with Python ${{ matrix.python-version }}
run: |
pipenv run unit-test
- name: Lint with Python ${{ matrix.python-version }}
run: |
pipenv run lint
pipenv run black-check
pipenv run isort-check
- name: Check type hints with ${{ matrix.python-version }}
run: |
pipenv run type-hints