Skip to content

update alumni

update alumni #85

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]
jobs:
validate-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Validate YAML files
run: ruby scripts/validate_yaml.rb
- name: Build Jekyll site
run: bundle exec jekyll build
env:
JEKYLL_ENV: production
- name: Test with html-proofer
run: bundle exec ruby scripts/htmlproofer_check.rb
- name: Upload built site
uses: actions/upload-artifact@v4
with:
name: site
path: _site/
retention-days: 7