Hey All!
I'm pretty new to bitbucket pipelines, so the following may seem trivial but anyway..
Tryin to declare the following bitbucket-pipelines.yml file:
definitions:
steps:
- step: &black
name: Black Format Check
image: python:3.7
script:
- pip install black
- black --check .
- step: &mypy
name: mypy Check
image: python:3.7
script:
- pip install mypy
- mypy src
- step: &flake8
name: flake8 Lint Check
image: python:3.7
script:
- pip install flake8 flake8-bugbear
- flake8 -v .
- step: &pylint
name: pylint Lint Check
image: python:3.7
script:
- pip install pylint
- pylint src
pipelines:
pull-requests:
feature/*:
- parallel:
- step: *black
- step: *mypy
- step: *flake8
- step: *pylint
But the pycharm states that
Schema validation: Property 'parallel' is not allowed
Interesting considering when checked using the online validator I see it's valid 
Have I miss used yaml anchors?
Thanks in advance for your help 