Skip to content

update iceberg study post image #291

update iceberg study post image

update iceberg study post image #291

Workflow file for this run

name: "CI"
on:
push:
branches:
- "master"
paths-ignore:
- ".github/**"
- "!.github/workflows/ci.yml"
- ".gitignore"
- "docs/**"
- "README.md"
- "LICENSE"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # for posts's lastmod
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install Dependencies
run: bundle install
- name: Build Site
run: bundle exec jekyll build
env:
JEKYLL_ENV: "production"
# - name: Test Site
# run: bundle exec htmlproofer _site \
# --disable-external \
# --ignore-urls "/^http:\/\/127\.0\.0\.1/,/^http:\/\/0\.0\.0\.0/,/^http:\/\/localhost/"