From 37543cf5d24a710e52c5a3c0f83613b8696d9e5c Mon Sep 17 00:00:00 2001 From: Alan O'Cais Date: Fri, 7 Feb 2020 12:09:41 +0100 Subject: [PATCH] Add URL checker to CI --- .github/workflows/urlchecker.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/urlchecker.yml diff --git a/.github/workflows/urlchecker.yml b/.github/workflows/urlchecker.yml new file mode 100644 index 00000000..75535285 --- /dev/null +++ b/.github/workflows/urlchecker.yml @@ -0,0 +1,17 @@ +name: Check URLs +on: [push, pull_request] +jobs: + url-checker: + runs-on: ubuntu-latest + steps: + - name: URLs-checker + uses: SuperKogito/URLs-checker@0.1.2 + with: + # The project base path. + git_path: https://github.com/easybuilders/easybuild-framework + + # A comma-separated list of file types to cover in the URL checks + file_types: .md,.py,.rst + + # Choose whether to include file with no URLs in the prints. + print_all: False