typo Update README.md #262
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Links | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
- name: Install awesome_bot | |
run: gem install awesome_bot | |
- name: Check non-Medium URLs | |
run: | | |
awesome_bot README.md --allow-redirect \ | |
--request-delay 1 \ | |
--set-timeout 10 \ | |
--white-list medium.com,arxiv.org | |
- name: Check Medium URLs | |
run: | | |
medium_urls=$(grep -Eo 'https?://[^[:space:]]+medium.com[^[:space:]]*' README.md) | |
if [ ! -z "$medium_urls" ]; then | |
echo "$medium_urls" > medium_urls.txt | |
awesome_bot medium_urls.txt --allow-redirect --request-delay 10 --set-timeout 15 | |
rm medium_urls.txt | |
else | |
echo "No Medium URLs found" | |
fi |