Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Lars Kruse
aura-engine
Commits
5903e21b
Commit
5903e21b
authored
Feb 17, 2022
by
Lars Kruse
Browse files
ci: check code style and spelling
parent
19e9ce70
Pipeline
#1349
failed
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
5903e21b
...
...
@@ -3,14 +3,25 @@ image: python:3.8
stages
:
-
test
before_script
:
.install_requirements
:
-
apt-get -qq update
-
python3.8 -m venv python
-
. python/bin/activate
-
pip3 install -r requirements.txt
-
cp config/sample-production.engine.ini config/engine.ini
run_test_cases
:
stage
:
test
before_script
:
-
*install_requirements
-
cp config/sample-production.engine.ini config/engine.ini
script
:
-
./run.sh test
check_style
:
stage
:
test
before_script
:
-
apt-get --quiet update
-
apt-get --quiet --yes install codespell make python3-flake8
script
:
-
make lint
-
make spelling
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment