Skip to content

A series of useful python scripts based on xarray for plotting data f… #761

A series of useful python scripts based on xarray for plotting data f…

A series of useful python scripts based on xarray for plotting data f… #761

Workflow file for this run

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@v1
- name: Install dependencies
run: |
pip3 install --user matplotlib
- 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: |
pip3 install --user matplotlib
- name: Build and deploy
run: julia --project=docs/ docs/make-pdf.jl