Skip to content

Commit

Permalink
add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marius311 committed May 6, 2022
1 parent 563db8d commit 7591ea9
Show file tree
Hide file tree
Showing 12 changed files with 1,575 additions and 1,088 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: doctests
name: tests_and_docs

on:
push:
Expand All @@ -22,9 +22,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install matplotlib
julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
run: julia --project=docs/ docs/make.jl
timeout-minutes: 30
run: julia --project=. -e 'using Pkg; Pkg.test(); include("docs/make.jl")'
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
scratch/
Manifest.toml
.vscode
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

[![](https://img.shields.io/badge/documentation-latest-blue.svg)](https://cosmicmar.com/MuseInference.jl/latest) [![](https://img.shields.io/badge/source-github-blue)](https://github.com/marius311/MuseInference.jl)

[![](https://github.com/marius311/MuseInference.jl/actions/workflows/docs.yml/badge.svg)](https://github.com/marius311/MuseInference.jl/actions/workflows/docs.yml)
[![](https://github.com/marius311/MuseInference.jl/actions/workflows/tests_and_docs.yml/badge.svg)](https://github.com/marius311/MuseInference.jl/actions/workflows/tests_and_docs.yml)

Marginal unbiased score expansion (MUSE) estimation in Julia, with interface to Turing.jl.
Marginal unbiased score expansion (MUSE) estimation in Julia, with interface to [Turing.jl](https://turing.ml) and [Soss.jl](https://github.com/cscherrer/Soss.jl).

For the Python package, see: https://github.com/marius311/muse_inference

## Install

```
pkg> add https://github.com/marius311/MuseInference.jl
pkg> add MuseInference
```

## Usage
Expand Down
Loading

0 comments on commit 7591ea9

Please sign in to comment.