Skip to content

maybe now

maybe now #5

Workflow file for this run

name: Python CI
on:
pull_request:
push:
branches: [main]
jobs:
mypy:
runs-on: ubuntu-latest
steps:

Check failure on line 11 in .github/workflows/python_ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/python_ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 11
- name: Prepare Python environment
- uses: ./.github/actions/python_prepare
- name: Run mypy
run: poetry run mypy
pytest:
runs-on: ubuntu-latest
steps:
- name: Prepare Python environment
- uses: ./.github/actions/python_prepare
- name: Run pytest
run: poetry run pytest
black:
runs-on: ubuntu-latest
steps:
- name: Prepare Python environment
- uses: ./.github/actions/python_prepare
- name: Check with black
run: poetry run black --check .