Better handling of wall boundary conditions in implicit electron timesteps #944
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: | |
- master | |
tags: '*' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.10' | |
- uses: julia-actions/cache@v2 | |
- name: Install dependencies | |
run: | | |
# Version 3.9.0 of matplotlib causes an error with PyPlot.jl, so pin | |
# matplotlib version to 3.8.3 until this is fixed. See | |
# https://github.com/JuliaPy/PyPlot.jl/issues/582). | |
pip3 install --user "matplotlib==3.8.3" | |
- name: Build and deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Authenticate with GitHub Actions token | |
run: julia --project=docs/ docs/make.jl | |
build-pdf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.10' | |
- name: Install dependencies | |
run: | | |
# Version 3.9.0 of matplotlib causes an error with PyPlot.jl, so pin | |
# matplotlib version to 3.8.3 until this is fixed. See | |
# https://github.com/JuliaPy/PyPlot.jl/issues/582). | |
pip3 install --user "matplotlib==3.8.3" | |
- name: Build and deploy | |
run: julia --project=docs/ docs/make-pdf.jl |