diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f035b7c..3404b51 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,13 +6,12 @@ on: - main jobs: example-job: + steps: + - name: print a welcome message + run: echo "welcome to our first github actions workflow" - steps: - - name: print a welcome message - run: echo "welcome to our first github actions workflow" + - name: checkout repository + uses: actions/checkout@v5.0.0 - - name: checkout repository - uses: actions/checkout@v5.0.0 - - - name: List repository files - run: ls -la + - name: List repository files + run: ls -la