Add EigenAI signature verification endpoints and documentation #267
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
| # .github/workflows/link-check.yml | |
| name: Link Checker | |
| on: | |
| push: | |
| paths: | |
| - 'docs/**' | |
| - 'scripts/check-links.py' | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| - 'scripts/check-links.py' | |
| jobs: | |
| link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Run broken‑link checker | |
| run: python scripts/check-links.py |