Skip to content

Curate RubSE UI-to-code evolution research #99

Curate RubSE UI-to-code evolution research

Curate RubSE UI-to-code evolution research #99

Workflow file for this run

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