Skip to content

Update README.md

Update README.md #34

Workflow file for this run

name: Jekyll site CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: apt-get update
run: sudo apt-get update
- name: install dependencies
run: sudo apt-get -y install ruby-full build-essential zlib1g-dev git
- name: install jekyll and bundler
run: sudo gem install jekyll bundler
- name: bundle install
run: sudo bundle install
- name: jekyll clean
run: sudo jekyll clean
- name: jekyll build
run: sudo jekyll build