feat: update documentation, simplify asset generation, and add automa… #4
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: 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 |