From 4617b18fe472610830228eedcca2c3f3ef20c2db Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 10 Aug 2024 23:24:51 -0400 Subject: [PATCH] Runner test --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e6b22ae --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +# Define the stages of your pipeline +stages: + - check + +# Define a job for the check stage +check_pipeline: + stage: check + image: alpine:latest # Use a lightweight Docker image + script: + - echo "Pipeline is running!" + - uname -a # Print system information + - whoami # Print current user \ No newline at end of file