Skip to content
Snippets Groups Projects
Commit e91861a2 authored by Lars Kruse's avatar Lars Kruse
Browse files

ci: run style check tests

parent 4d8eff1e
No related branches found
No related tags found
1 merge request!1Style & Tests
Pipeline #1669 passed
...@@ -2,6 +2,7 @@ image: python:3.8-buster ...@@ -2,6 +2,7 @@ image: python:3.8-buster
stages: stages:
- bundle - bundle
- test
- deploy - deploy
variables: variables:
...@@ -31,6 +32,16 @@ bundle_and_test: ...@@ -31,6 +32,16 @@ bundle_and_test:
only: only:
- $CI_DEFAULT_BRANCH - $CI_DEFAULT_BRANCH
check_style:
stage: test
before_script:
- apt-get --quiet update
- apt-get --quiet --yes install codespell make
- pip install flake8
script:
- make lint
- make spelling
# test_api: # test_api:
# stage: test # stage: test
# script: # script:
......
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