fix: umi coverage qc (#1490) #130
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 URLs | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
jobs: | |
main: | |
name: Find broken cache and documentation links | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Git checkout | |
id: git_checkout | |
uses: actions/checkout@v3 | |
- name: Link Checker | |
uses: lycheeverse/[email protected] | |
with: | |
args: --max-redirects 10 --verbose './BALSAMIC/constants/cache.py' './docs/*.rst' | |
fail: true |