Skip to content

Update isort config #108

Update isort config

Update isort config #108

Workflow file for this run

name: Code Quality
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11.4"
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
eval `ssh-agent -s`
ssh-add - <<< '${{ secrets.SHIMMER_DEPLOY }}'
poetry install --with dev
- uses: isort/isort-action@master
with:
sortPaths:
- "./simple_shapes_dataset"

Check failure on line 24 in .github/workflows/quality.yml

View workflow run for this annotation

GitHub Actions / Code Quality

Invalid workflow file

The workflow is not valid. .github/workflows/quality.yml (Line: 24, Col: 13): A sequence was not expected
- "./playground"
- uses: psf/black@stable
with:
src: "."
- name: Analysing the code with flake8
run: |
poetry run flake8 .
- name: Analysing the code with mypy
run: |
poetry run mypy --install-types --non-interactive .