Skip to content

Deepen Dec 20-26: topic-locked padya, vows drills dual-control, gate-… #628

Deepen Dec 20-26: topic-locked padya, vows drills dual-control, gate-…

Deepen Dec 20-26: topic-locked padya, vows drills dual-control, gate-… #628

Workflow file for this run

name: Beautiful Jekyll CI
on:
push:
pull_request:
jobs:
build:
name: Build Jekyll
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
# Smoke-build. --future allows posts dated ahead of the runner clock.
# vendor/ is excluded in _config.yml so bundler path is not scanned as content.
- name: Build site
run: bundle exec jekyll build --future
- name: Verify build output
run: |
test -f _site/index.html
ls _site | head -n 40
echo "Jekyll CI build OK"