Skip to content

missing space

missing space #25

Workflow file for this run

name: Push to Master CICD
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Pip install package
run: |
python -m pip install --upgrade pip
pip install .
- name: Poetry install package
run: |
pip install poetry
poetry install
lint:
needs: build
steps:

Check failure on line 25 in .github/workflows/push_to_master.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/push_to_master.yaml

Invalid workflow file

You have an error in your yaml syntax on line 25
- name: pydocstyle
run: poetry run pydocstyle --convention=google
-name: isort
run: poetry run isort . --check
- name: black
run: poetry run black . --check
- name: flake8
run: poetry run flake8 . --ignore E501,F401,W503 --count
continue-on-error: True
test:
needs: build
steps:
- name: Testing
run: |
poetry run pytest