Skip to content

Migrate to Github Pages #10

Migrate to Github Pages

Migrate to Github Pages #10

Workflow file for this run

---
name: PR verification
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install plantuml
run: sudo apt-get install -y plantuml
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
cache-version: 0
- name: Install gems
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Build site with Jekyll
run: |
bundle exec jekyll build