Skip to content

add jekyll website files #19

add jekyll website files

add jekyll website files #19

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 1 # Increment this number if you need to re-download cached gems
- name: Install Bundler
run: gem install bundler # Explicitly install Bundler
- name: Install dependencies
run: bundle install # Install gems from Gemfile
working-directory: ./docs # Ensure this is run in the 'docs' directory where Gemfile is located
- name: Build with Jekyll
run: bundle exec jekyll build
working-directory: ./docs