From eba4d9578b957f58fac7a9ee6a527fe33a943881 Mon Sep 17 00:00:00 2001
From: Bo-Chun Chen <louistw@uab.edu>
Date: Wed, 7 Feb 2024 09:09:23 -0600
Subject: [PATCH] Test command substitution

---
 .gitlab-ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0512bfd..80e0cb8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,7 +27,9 @@ build-job:       # This job runs in the build stage, which runs first.
   tags:
     - build
   script:
-
+    - echo "Test with command substitution"
+    - FILES=$(ls)
+    - echo $FILES
     - echo "Compiling the code..."
     - echo "Compile complete."
     - |
-- 
GitLab