Skip to content

Commit 3914e02

Browse files
authored
Update completeness_check.yml
1 parent f53d5d2 commit 3914e02

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

.github/workflows/completeness_check.yml

+5-11
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,14 @@ jobs:
2525
! grep -q "## Getting started" README.md; then
2626
echo "README.md is missing one or more required sections." && exit 1;
2727
fi
28-
continue-on-error: true
29-
28+
3029
- name: Check if https://lvgl.io/boards has a link to this repo
3130
run: |
3231
REPO_URL=$(git config --get remote.origin.url | sed 's/\.git$//')
3332
curl -s https://lvgl.io/boards | grep -q "$REPO_URL"
3433
if [ $? -ne 0 ]; then
3534
echo "https://lvgl.io/boards does not have a link to this repository." && exit 1;
3635
fi
37-
continue-on-error: true
3836
3937
- name: Check if https://github.com/lvgl/lvgl_project_creator/blob/master/manifests has a link to this repo
4038
run: |
@@ -43,8 +41,7 @@ jobs:
4341
if [ $? -ne 0 ]; then
4442
echo "Manifest does not contain a link to this repository." && exit 1;
4543
fi
46-
continue-on-error: true
47-
44+
4845
- name: Check for single lv_conf files
4946
run: |
5047
echo "Checking for single lv_conf.h and lv_conf.defaults files..."
@@ -68,14 +65,12 @@ jobs:
6865
fi
6966
7067
echo "✅ File checks passed."
71-
continue-on-error: true
72-
68+
7369
- name: Check for lv_conf.defaults in root
7470
run: |
7571
if [ ! -f lv_conf.defaults ]; then
7672
echo "lv_conf.defaults file is missing in the root directory." && exit 1;
7773
fi
78-
continue-on-error: true
7974
8075
- name: Check if the repo URL is in the branch updater
8176
run: |
@@ -91,11 +86,10 @@ jobs:
9186
echo "❌ The repository URL is NOT"
9287
exit 1
9388
fi
94-
continue-on-error: true
95-
89+
9690
- name: Check for YouTube link in README
9791
run: |
9892
if ! grep -qE 'https://(www\.)?youtube\.com|youtu\.be' README.md; then
9993
echo "README.md is missing a link to a YouTube video." && exit 1;
10094
fi
101-
continue-on-error: true
95+

0 commit comments

Comments
 (0)