From ea2a54391bea4ee52246488e813411463a15da6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <pmaslanka@smok.co> Date: Fri, 2 Aug 2024 10:12:43 +0200 Subject: [PATCH] fix --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..34d29ea --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +stages: + - test + - build + + +.test_python: + stage: test + before_script: + - pip install --upgrade Cython setuptools pip + - git clone https://github.com/smok-serwis/minijson.git + - cd minijson + - python setup.py install + - cd .. + - pip install -r requirements.txt + script: + - python setup.py test + +test_python38: + extends: .test_python + image: python:3.8 \ No newline at end of file -- GitLab