Skip to content

Updated docs and tests #8

Updated docs and tests

Updated docs and tests #8

Workflow file for this run

name: Deploy gwplot docs
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
bundler-cache: true
- name: Install dependencies
run: cd docs && bundle install
- name: Build site
run: cd docs && bundle exec jekyll build --source docs --destination _site
- name: Deploy to GitHub Pages
uses: actions/upload-pages-artifact@v3
with:
path: docs/_site