From a035326a7c1c0465916bee690f9b1cff6b00b8d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20A=20Le=C3=B3n=20Baldelli?= Date: Sat, 23 Mar 2024 10:09:21 +0100 Subject: [PATCH] ci workflow --- .github/workflows/learn-ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/learn-ci.yml b/.github/workflows/learn-ci.yml index db8a79a5..7d2ae995 100644 --- a/.github/workflows/learn-ci.yml +++ b/.github/workflows/learn-ci.yml @@ -10,11 +10,18 @@ jobs: build-image-and-run-tests: runs-on: ubuntu-latest container: kumiori3/numerix:stable - + steps: - name: Checkout code uses: actions/checkout@v4 + - name: test-step + shell: bash + run: | + echo "--This is running in my numerix Docker image--" + echo "Current directory is $(pwd)" + echo "Contents of the directory are $(ls -la)" + # - name: Run Docker container # run: docker run --rm -v "${{ github.workspace }}":/home/numerix -w /home/numerix kumiori3/numerix:stable