Skip to content

Commit

Permalink
updating lesson
Browse files Browse the repository at this point in the history
  • Loading branch information
mmummATlnw committed Oct 23, 2024
1 parent 050b50d commit 7f480c7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/dependent_jobs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: dependent jobs
on: [push]
jobs:
fake_build:
runs-on: ubuntu-latest
steps:
- run: |
echo "Fake build"
sleep 10
name: Fake build
fake_test:
runs-on: ubuntu-latest
needs: fake_build
steps:
- run: |
echo "Fake test"
sleep 10
name: Fake test
2 changes: 1 addition & 1 deletion .github/workflows/hello_mumm.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: first test
on: [workflow_dispatch, push, pull_request, issues]
on: [workflow_dispatch]
jobs:
first_hello_mumm:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7f480c7

Please sign in to comment.