Skip to content

Commit

Permalink
Remove markdown link check
Browse files Browse the repository at this point in the history
This CI job is incredibly flaky and provides little value.
Remove it to reduce maintenance burden.
  • Loading branch information
lopopolo committed Dec 25, 2024
1 parent 676136d commit d64043b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 75 deletions.
22 changes: 0 additions & 22 deletions .github/markdown-link-check.json

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/markdown-link-check.yaml

This file was deleted.

19 changes: 0 additions & 19 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,22 +95,3 @@ task :'test:miri' do
end

Bundler::Audit::Task.new

namespace :release do
link_check_files = FileList.new('**/*.md') do |f|
f.exclude('node_modules/**/*')
f.exclude('**/target/**/*')
f.exclude('**/vendor/*/**/*')
f.include('*.md')
f.include('**/vendor/*.md')
end

link_check_files.sort.uniq.each do |markdown|
desc 'Check for broken links in markdown files'
task markdown_link_check: markdown do
command = ['npx', 'markdown-link-check', '--config', '.github/markdown-link-check.json', markdown]
sh command.shelljoin
sleep(rand(1..5))
end
end
end

0 comments on commit d64043b

Please sign in to comment.