Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/fourthworkflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Fourth workflow (Job Status)

on:
workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Build step
run: echo "Building project..."

test:
runs-on: ubuntu-latest
needs: build # 👈 runs only after build

steps:
- name: Test step
run: echo "Running tests..."

deploy:
runs-on: ubuntu-latest
needs: test # 👈 runs only after test

steps:
- name: Deploy step
run: echo "Deploying project..."
1 change: 1 addition & 0 deletions test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test
Loading