Skip to content
Snippets Groups Projects

build: set up a continuous integration pipeline for tests

Merged Deaktivert bruker requested to merge andretol/greg:GREG-15/1 into master
All threads resolved!
3 files
+ 26
15
Compare changes
  • Side-by-side
  • Inline
Files
3
.gitlab-ci.yml 0 → 100644
+ 17
0
image: python:3.9-buster
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
paths:
- .cache/pip
- venv/
before_script:
- python -V
test:
script:
- make test
Loading