Skip to content

Introduce option to ignore specific classes during the conversion. #50

Introduce option to ignore specific classes during the conversion.

Introduce option to ignore specific classes during the conversion. #50

Workflow file for this run

name: Lint check
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install -U hatch
- name: Run lint
run: hatch run +py=${{ matrix.python-version }} lint:all