diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..83235cb61937a9f9fd26b8893d4ca589dcf5cbcb --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +test-job: + script: + - python3 -m venv .venv # Create Python virtual environment + - source .venv/bin/activate # Activate Python virtual environment + - pip3 install -r requirements.txt # Install Python dependencies + - pip3 install pytest # Install pytest + - pytest test/ # Run tests + - pip3 install build # Install build package + - python3 -m build # Build package + - pip3 install . # Install package