Skip to content

Commit 50d953b

Browse files
committed
Use standardized workflow/job/step names in website check workflow
These are the naming conventions established in the standardized template workflow.
1 parent 5a790c2 commit 50d953b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/check-mkdocs-task.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Validate documentation
1+
name: Check Website
22

33
on:
44
pull_request:
@@ -20,14 +20,14 @@ on:
2020
- ".github/workflows/check-mkdocs-task.ya?ml"
2121

2222
jobs:
23-
validate:
23+
check:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- name: Checkout local repository
27+
- name: Checkout repository
2828
uses: actions/checkout@v2
2929

30-
- name: Install Taskfile
30+
- name: Install Task
3131
uses: arduino/setup-task@v1
3232
with:
3333
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -48,6 +48,6 @@ jobs:
4848
python -m pip install --upgrade pip
4949
python -m pip install poetry
5050
51-
- name: Build documentation website
51+
- name: Build website
5252
# Ensure the documentation can build. These docs won't be published.
5353
run: task website:check

0 commit comments

Comments
 (0)