1
1
# Ultralytics YOLO 🚀, AGPL-3.0 license
2
2
# Continuous Integration (CI) GitHub Actions tests broken link checker using https://github.com/lycheeverse/lychee
3
3
# Ignores the following status codes to reduce false positives:
4
+ # - 401(Vimeo, 'unauthorized')
4
5
# - 403(OpenVINO, 'forbidden')
5
6
# - 429(Instagram, 'too many requests')
6
7
# - 500(Zenodo, 'cached')
53
54
--scheme 'https' \
54
55
--timeout 60 \
55
56
--insecure \
56
- --accept 403,429,500,502,999 \
57
+ --accept 401, 403,429,500,502,999 \
57
58
--exclude-all-private \
58
59
--exclude 'https?://(www\.)?(linkedin\.com|twitter\.com|instagram\.com|kaggle\.com|tiktok\.com|fonts\.gstatic\.com|fonts\.googleapis\.com|url\.com)' \
59
60
--exclude-path '**/ci.yaml' \
87
88
--scheme 'https' \
88
89
--timeout 60 \
89
90
--insecure \
90
- --accept 403,429,500,502,999 \
91
+ --accept 401, 403,429,500,502,999 \
91
92
--exclude-all-private \
92
93
--exclude 'https?://(www\.)?(linkedin\.com|twitter\.com|instagram\.com|kaggle\.com|tiktok\.com|fonts\.gstatic\.com|fonts\.googleapis\.com|url\.com|wellfound\.com|.*\.cloudfunctions\.net|0\.0\.0\.0:5543/predict/from_files)' \
93
94
--exclude-path '**/ci.yaml' \
@@ -108,7 +109,7 @@ jobs:
108
109
--scheme 'https' \
109
110
--timeout 60 \
110
111
--insecure \
111
- --accept 429,999 \
112
+ --accept 401,403, 429,500,502 ,999 \
112
113
--exclude-all-private \
113
114
--exclude 'https?://(www\.)?(linkedin\.com|twitter\.com|instagram\.com|kaggle\.com|tiktok\.com|fonts\.gstatic\.com|fonts\.googleapis\.com|url\.com)' \
114
115
--exclude-path '**/ci.yaml' \
0 commit comments