Skip to content

Enhance documentation #1154

Enhance documentation

Enhance documentation #1154

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Set up Ruby 3.4.5
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.5
- name: Install Bundler
run: gem install bundler -v 2.7.2
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install
- name: Test web site changes
run: ./scripts/cibuild