From 95c0ee6e1f67c8fc1ecc77470c7c3856546894cc Mon Sep 17 00:00:00 2001 From: Alexander Sabino <32822107+asabino2@users.noreply.github.com> Date: Sat, 19 Oct 2024 23:41:26 +0100 Subject: [PATCH 1/3] Create main.yml --- .github/workflows/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3af9720 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: List Directory + +on: [push] + +jobs: + list-directory: + runs-on: ubuntu-latest + + steps: + - name: List directory contents + run: ls -la From 55b36ab94e1772ff4bc0f8485295d11273db94ff Mon Sep 17 00:00:00 2001 From: Alexander Sabino <32822107+asabino2@users.noreply.github.com> Date: Sun, 20 Oct 2024 09:41:45 +0100 Subject: [PATCH 2/3] Update main.yml --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3af9720..c8f0193 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,4 +8,6 @@ jobs: steps: - name: List directory contents - run: ls -la + run: ls -laF + - name: view the current directory + run: pwd From 9d712a4b9d6bfb80f26610811b4d398b3f77414e Mon Sep 17 00:00:00 2001 From: Alexander Sabino <32822107+asabino2@users.noreply.github.com> Date: Sun, 20 Oct 2024 09:45:15 +0100 Subject: [PATCH 3/3] Update main.yml --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c8f0193..69b2fa1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,3 +11,6 @@ jobs: run: ls -laF - name: view the current directory run: pwd + - name: check if docker is installed + run: docker +