Skip to content

Merge pull request #90 from phajy/bind_debugging #85

Merge pull request #90 from phajy/bind_debugging

Merge pull request #90 from phajy/bind_debugging #85

Workflow file for this run

name: docs
on:
push:
branches:
- main
- fergus/docs
jobs:
docs:
name: Build and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1.9'
- run: |
julia --project=docs -e '
using Pkg
Pkg.add("Plots")
Pkg.add("UnicodePlots")
Pkg.add("BenchmarkTools")
Pkg.add(url = "https://github.com/astro-group-bristol/LibXSPEC_jll.jl#master")
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}