Skip to content

Refactor some code using the new stdlib and generics, and add several… #90

Refactor some code using the new stdlib and generics, and add several…

Refactor some code using the new stdlib and generics, and add several… #90

Workflow file for this run

name: Docs
on:
push:
branches: [ main ]
jobs:
deploy:
name: Deploy docs
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install Ruby dependencies
run: bundler install
working-directory: docs
- name: Build site
run: jekyll build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site