Skip to content

Basic crystal plasticity model #313

Basic crystal plasticity model

Basic crystal plasticity model #313

Workflow file for this run

name: Documentation
on:
# Triggers the workflow on push or pull request
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: sudo apt install graphviz
- run: pip install -r requirements.txt
- run: cmake -DDOCUMENTATION=ON .
- run: make doc-syntax -j 2
- run: make doc-html
- run: cat doc/doxygen.log
- name: Deploy to GitHub Pages
if: ${{ github.event_name == 'push' }}
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: doc/build/html
single-commit: true