Skip to content

Add get shape properties task #51

Add get shape properties task

Add get shape properties task #51

Workflow file for this run

name: lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --no-interaction --no-root
- name: Lint with pylint
run: |
source .venv/bin/activate
pylint --ignore-patterns=test.*?py src/ tests/ --fail-under=7.0
- name: Check with black
run: |
source .venv/bin/activate
black -l 100 --check src/ tests/
- name: Check with isort
run: |
source .venv/bin/activate
isort -l 100 --check src/ tests/
- name: Check with mypy
run: |
source .venv/bin/activate
mypy src