diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 25dd9af..47d14a6 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -1,8 +1,16 @@ name: Our First Workflow on: push jobs: - echo: - runs-on: ubuntu-latest - steps: - - run: echo 'Hellworld, Github Actions!' + echo: + runs-on: ubuntu-latest + steps: + - run: echo 'Hellworld, Github Actions!' + pwd-ls: + name: PWD&LS + runs-on: ubuntu-letest + steps: + - name: PWD + run: pwd + - name: List files + run: ls -al