Skip to content

Commit 0093fa6

Browse files
committed
Refactor workflow YAML file to improve readability and remove unused steps
1 parent 4e37d5e commit 0093fa6

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/first-workflow.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,12 @@ on:
44
workflow_dispatch:
55

66
jobs:
7-
build:
7+
job1:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- name: Checkout code
12-
uses: actions/checkout@v2
13-
14-
# Add your build and test steps here
15-
- name: Job1
16-
runs-on: ubuntu-latest
17-
steps:
18-
- name: Step 1
11+
- name: Step 1
1912
run: echo "Step 1 complete!"
20-
- name: Step 2
13+
14+
- name: Step 2
2115
run: echo "Step 2 complete!"

0 commit comments

Comments
 (0)