URL Validation #134
This file contains hidden or 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: URL Validation | |
| on: | |
| schedule: | |
| - cron: '0 3 * * 0' | |
| workflow_dispatch: | |
| inputs: | |
| git-ref: | |
| description: Git Hash (Optional) | |
| required: false | |
| jobs: | |
| url_check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Pyomo source | |
| uses: actions/checkout@v6 | |
| - name: Set DNS server | |
| run: | | |
| # This will hopefully resolve intermittent DNS resolution errors | |
| echo "Reset DNS servers to use cloudfare" | |
| LINK=`resolvectl query github.com | grep link: | sed -r 's/.*link://'` | |
| sudo resolvectl dns $LINK 1.1.1.1 1.0.0.1 | |
| sudo resolvectl flush-caches | |
| sudo resolvectl query github.com | |
| sudo resolvectl status | |
| - name: URL Checker | |
| uses: urlstechie/urlchecker-action@0.0.34 | |
| with: | |
| # A comma-separated list of file types to cover in the URL checks | |
| file_types: .md,.rst,.py | |
| # Choose whether to include file with no URLs in the prints. | |
| print_all: false | |
| # More verbose summary at the end of a run | |
| verbose: true | |
| # How many times to retry a failed request (defaults to 1) | |
| retry_count: 3 | |
| # The timeout seconds to provide to requests, defaults to 5 seconds | |
| timeout: 60 | |
| # Exclude: | |
| # - Jenkins because it's behind a firewall | |
| # - RTD because a magically-generated string triggers failures | |
| # - scipopt.org as they perform "validation" on the webclient (which fails) | |
| exclude_urls: https://pyomo-jenkins.sandia.gov/,https://pyomo.readthedocs.io/en/%s/errors.html,https://www.scipopt.org | |
| # Exclude: | |
| # - All gnu.org links because they consistently fail the checker | |
| # - All lpsolve.sourceforge.net links because SF appears to reject from GHA | |
| # - All www.mathworks.com links because MathWorks appears to reject from GHA | |
| exclude_patterns: https://www.gnu.org,https://lpsolve.sourceforge.net/,https://www.mathworks.com/ |