diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..68ccfa09cf7382dc4328732576f74412b4dc1b78 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,7 @@ +run_tests: + image: python:3.12.3-bullseye + before_script: + - apt-get update && apt-get install pip + - pip install -r requirements.txt + script: + - python src_to_implement/NumpyTest.py Bonus