Bump just-the-docs from 0.10.0 to 0.10.1 #97
This file contains 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: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Setup Ruby Environment | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.1' | |
bundler-cache: false # Disable automatic bundler cache to control behavior | |
- name: Install Dependencies | |
run: | | |
bundle config set frozen false | |
bundle install | |
- name: Build with Jekyll | |
run: bundle exec jekyll build |