Skip to content

Fixed video renderings + Formatting consistency + Citation updates/additions #264

Fixed video renderings + Formatting consistency + Citation updates/additions

Fixed video renderings + Formatting consistency + Citation updates/additions #264

Workflow file for this run

name: Check for build
on:
pull_request:
branches:
- main
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Build on Ubuntu
run: quarto render
- name: Upload artifact from Ubuntu
if: ${{ github.event_name == 'pull_request' }}
uses: actions/upload-artifact@v3
with:
name: _book-ubuntu
path: _book
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Build on Windows
run: quarto render
- name: Upload artifact from Windows
if: ${{ github.event_name == 'pull_request' }}
uses: actions/upload-artifact@v3
with:
name: _book-windows
path: _book