Skip to content

Commit 15fea3d

Browse files
committed
Refining messages
1 parent 26f61ac commit 15fea3d

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/validate_vrt.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,42 +7,43 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- name: "SETUP: Checkout repository"
11+
uses: actions/checkout@v4
1112
with:
1213
fetch-depth: 0
1314

14-
- name: "[SETUP] Install Python 3.13"
15+
- name: "SETUP: Install Python 3.13"
1516
uses: actions/setup-python@v5
1617
with:
1718
python-version: "3.13"
1819

19-
- name: "[SETUP] Install dependencies"
20+
- name: "SETUP: Install dependencies"
2021
run: |
2122
python -m pip install --upgrade pip
2223
pip install -r lib/requirements.txt
2324
24-
- name: "[LINT] Test with flake8"
25+
- name: "LINT: Test with flake8"
2526
run: |
2627
pip install flake8
2728
# stop the build if there are Python syntax errors or undefined names
2829
flake8 ./lib --count --select=E9,F63,F7,F82 --show-source --statistics
2930
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3031
flake8 ./lib --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3132
32-
- name: "[VRT] Validate VRT entries and mappings"
33+
- name: "VRT: Validate VRT entries and mappings"
3334
run: |
3435
python3 -B lib/validate_vrt.py
3536
36-
- name: "[ARTIFACTS] Create artifact json file"
37+
- name: "ARTIFACTS: Create artifact json file"
3738
run: |
3839
python3 -B lib/generate_artifacts.py
3940
40-
- name: "[ARTIFACTS] Upload artifact"
41+
- name: "ARTIFACTS: Upload artifact"
4142
uses: actions/upload-artifact@v4
4243
with:
4344
name: Secure Code Warrior Links
4445
path: scw_links.json
4546

46-
- name: "[ARTIFACTS] Validate links"
47+
- name: "ARTIFACTS: Validate links"
4748
run: |
4849
python3 -B lib/validate_artifacts.py

0 commit comments

Comments
 (0)