add muse2 main branch install to ci #87
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: Check links in Markdown files | |
| on: | |
| schedule: | |
| - cron: 0 0 * * 1 # midnight every Monday | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| check-links: | |
| name: Lychee link checker | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - id: lychee | |
| uses: lycheeverse/lychee-action@v2 |