Skip to content

Commit

Permalink
test github actions (added pwd&ls)
Browse files Browse the repository at this point in the history
  • Loading branch information
junhyunlee123 committed May 23, 2024
1 parent 7f0bd78 commit 8687e43
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8687e43

Please sign in to comment.