Lockstep widgets with matterviz-anywidget 0.6.0 (#358) #2162
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: Link check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v6 | |
| - name: Discover broken links | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| # increase max-redirects needed for some journal links | |
| args: >- | |
| --accept 100..=103,200..=299,403,429,500,503 --max-redirects 10 | |
| --exclude-path tmp/ | |
| --exclude-all-private --exclude '\{.*\}' | |
| --exclude https://s3.us-east-1.amazonaws.com/materialsproject-contribs/MatPES_2025_1 | |
| --exclude https://github.com/ACEsuit/mace-foundations/releases/download | |
| --exclude https://s3.amazonaws.com/publications.matr.io/7/deployment/data/files | |
| --exclude https://www.jp-minerals.org/vesta/en/ | |
| -- ./**/*.{py,md,svelte,ts,yml,yaml} |