Skip to content
Snippets Groups Projects
Verified Commit 5736389a authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

ci: add check-style job to the test stage

parent 9a6c8302
No related branches found
No related tags found
No related merge requests found
Pipeline #7945 passed
......@@ -32,6 +32,19 @@ build-openapi-scheme:
paths:
- $OPENAPI_JSON
check-style:
stage: test
image: python:3.11-slim
before_script:
# we do this, because YAML anchors are not supported when executing locally
- python3 -m pip install --upgrade pip
- python3 -m pip install poetry
- poetry install --no-root --only=dev
script:
- poetry run flake8 program steering
- poetry run isort program steering
- poetry run black program steering
run_test_cases:
stage: test
image: python:3.11-slim
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment