Skip to content

chore: add citation file #9

chore: add citation file

chore: add citation file #9

Workflow file for this run

name: Test website build
on:
pull_request:
branches:
- main
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
deploy:
name: Test deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout website branch
uses: actions/checkout@v3
with:
ref: website
- name: Checkout main branch
uses: actions/checkout@v3
with:
ref: main
path: ./code/
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: Install Python requirements
run: pip install -r requirements.txt
- name: Generate documentation
run: python3 ./docs/documentation/produce_doc.py ./code/cytools/
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build