Skip to content

README: add 'Watch the film' — The Graph Coding Era + interactive exp… #20

README: add 'Watch the film' — The Graph Coding Era + interactive exp…

README: add 'Watch the film' — The Graph Coding Era + interactive exp… #20

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
validate:
name: Validate release surface
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check required files
run: |
set -e
for f in README.md LICENSE CHANGELOG.md CODE_OF_CONDUCT.md SECURITY.md CONTRIBUTING.md examples/LICENSE examples/README.md; do
test -f "$f" || (echo "missing: $f"; exit 1)
done
test -d .github/ISSUE_TEMPLATE
test -f .github/ISSUE_TEMPLATE/bug_report.yml
test -f .github/ISSUE_TEMPLATE/feature_request.yml
echo "all required files present"
- name: Markdown lint
uses: DavidAnson/markdownlint-cli2-action@v16
with:
globs: '**/*.md'
continue-on-error: true
- name: Link check
uses: lycheeverse/lychee-action@v2
with:
args: --no-progress --verbose --accept 200,403,429 '**/*.md'
fail: false