Skip to content

Commit ad30015

Browse files
committed
Remove markdown link check
This CI job is incredibly flaky and provides little value. Remove it to reduce maintenance burden.
1 parent f2508fc commit ad30015

File tree

3 files changed

+0
-75
lines changed

3 files changed

+0
-75
lines changed

.github/markdown-link-check.json

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/markdown-link-check.yaml

Lines changed: 0 additions & 34 deletions
This file was deleted.

Rakefile

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -101,25 +101,6 @@ end
101101

102102
Bundler::Audit::Task.new
103103

104-
namespace :release do
105-
link_check_files = FileList.new('**/*.md') do |f|
106-
f.exclude('node_modules/**/*')
107-
f.exclude('**/target/**/*')
108-
f.exclude('**/vendor/*/**/*')
109-
f.include('*.md')
110-
f.include('**/vendor/*.md')
111-
end
112-
113-
link_check_files.sort.uniq.each do |markdown|
114-
desc 'Check for broken links in markdown files'
115-
task markdown_link_check: markdown do
116-
command = ['npx', 'markdown-link-check', '--config', '.github/markdown-link-check.json', markdown]
117-
sh command.shelljoin
118-
sleep(rand(1..5))
119-
end
120-
end
121-
end
122-
123104
desc 'Generate native bindings with Rust bindgen'
124105
task :bindgen do
125106
bindgen = %w[

0 commit comments

Comments
 (0)