Runner test

This commit is contained in:
Jack Christensen 2024-08-10 23:24:51 -04:00
parent 0c47167bfb
commit 4617b18fe4
1 changed files with 12 additions and 0 deletions

12
.gitlab-ci.yml Normal file
View File

@ -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