Skip to content

Adding check URLs to GH actions #5

Adding check URLs to GH actions

Adding check URLs to GH actions #5

Workflow file for this run

name: Check URLs validity
on:
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run URLChecker
uses: urlstechie/[email protected]
with:
file_types: .md
force_pass: true
save: results.csv
exclude_patterns: 127.0.0.1,localhost,ipfs_,ca_org,ethconnect_,dataexchange_
- name: Check that results exist
run: cat results.csv
- name: Upload check results
if: success()
uses: actions/upload-artifact@v4
with:
name: urlchecker-results
path: results.csv