Skip to content

test github actions (added pwd&ls) #3

test github actions (added pwd&ls)

test github actions (added pwd&ls) #3

Workflow file for this run

name: Our First Workflow
on: push
jobs:
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