We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 968a900 commit d4d089eCopy full SHA for d4d089e
.gitlab-ci.yml
@@ -0,0 +1,31 @@
1
+stages:
2
+ - prepare
3
+ - test
4
+
5
+codestyle:
6
+ stage: prepare
7
+ image: python:3.12
8
+ variables:
9
+ POETRY_VIRTUALENVS_CREATE: false
10
+ before_script:
11
+ # Install dependencies
12
+ - pip install poetry
13
+ - poetry install
14
+ script:
15
+ # Format sources
16
+ - ./scripts/format
17
18
+tests:
19
+ stage: test
20
21
22
23
24
25
26
27
28
29
30
+ # Run tests
31
+ - ./scripts/test
0 commit comments