Deepen all corpus: kill formula closes and shared stock limbs. #632
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: 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" |