Curate RubSE UI-to-code evolution research #99
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "17 16 * * 1" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Validate community structure | |
| run: ruby test/community_structure_test.rb | |
| - name: Check Markdown links | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| # The project URL is unavailable until the first Pages deployment. | |
| args: >- | |
| --no-progress | |
| --max-retries 2 | |
| --timeout 20 | |
| --exclude '^https://yuxinglu613\.github\.io/awesome-agentic-evolution/?$' | |
| './**/*.md' | |
| fail: true |