Skip to content

feat: update documentation, simplify asset generation, and add automa… #4

feat: update documentation, simplify asset generation, and add automa…

feat: update documentation, simplify asset generation, and add automa… #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check for large files
run: |
large=$(find . -not -path './.git/*' -size +1M -type f)
if [ -n "$large" ]; then
echo "Large files detected:"
echo "$large"
exit 1
fi
- name: Check no CV PDF in root
run: |
if [ -f CV_*.pdf ]; then
echo "CV PDF found in root — must be hosted via Releases"
exit 1
fi
- name: Validate README links
run: |
if grep -qP '\[.*\]\(https?://' README.md; then
echo "README contains external links"
fi