From 64a4f3d855e037331f0ebc40c2df90583be57e95 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 9 Feb 2023 20:05:09 -0500 Subject: [PATCH] Attempt at setting up ci. --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..763985c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +image: ubuntu + +before_script: + - apt-get update + - apt-get -qy upgrade + - apt-get -y install make python2 python3 pylint + +test: + script: + - echo "Running as ${USER:-root}" + - make check -- 2.31.1