Skip to content

Implement Turing.Inference.getlogp_external #58

Implement Turing.Inference.getlogp_external

Implement Turing.Inference.getlogp_external #58

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags: '*'
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
permissions:
contents: write
pull-requests: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Build and deploy Documenter.jl docs
uses: TuringLang/actions/DocsDocumenter@main
- name: Run doctests
shell: julia --project=docs --color=yes {0}
run: |
using Documenter: DocMeta, doctest
using SliceSampling
DocMeta.setdocmeta!(SliceSampling, :DocTestSetup, :(using SliceSampling); recursive=true)
doctest(SliceSampling)