-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed duplicated output element (#291) * Removed duplicated output element * Updated package version and NEWS * Should fix #292 (#293) * Updated NEWS and increment version * Updated citation info in README * Should fix #299 (#300) * Should fix #299 * Added missing documentation objects and changed the name of one argument * Fixed another documentation issue * Removed deprecated SMC functions (#303) * Updated build version number * Increment version number to 1.3.2.9002 * Removed deprecated SMC functions (#301) * Updated NEWS (#301) * Logz issue 158 (#304) * Added exact partition function option * Updated tests * Updated SMC Mallows examples * Styling * More linting * Updated linter workflow Some linter were deprecated, ignored line on vignette needed update * Trying to please CodeFactor * Incremented version number and added entry to NEWS.md --------- Co-authored-by: Waldir Leoncio <w.l.netto@medisin.uio.no> * Added BugReport URL (#308) * Added URL for bug reports * Increment version number to 1.3.2.9004 * Small typo correction and documentation update * Website (#310) * Website * De-duplicating vignettes * Adding GH Action for pkgdown (#290) Literally the output of `usethis::use_github_action("pkgdown")` * Triggering `gh-pages` when pushing to PR #310 (tests) This is just for testing the online deployment and should be removed after merge (or just before). --------- Co-authored-by: Waldir Leoncio <w.l.netto@medisin.uio.no> * Small changes (#311) * Small changes * Fixed gh-pages bases for deployment (#290) The PR branch was left over. More importantly, the file listed "main" instead of "master". --------- Co-authored-by: Waldir Leoncio <w.l.netto@medisin.uio.no> * Corrected small typo in documentation * Cleaner unit test output (#314) * Increment version number to 1.3.2.9006 * Capturing output of test unit * Dirichlet concentration parameter is now actually being used (#315) * forwarded psi argument to run_mcmc * Incremented version and updated news.md * ready for cran submission * CRAN wanted a trailing slash in the URL to the website, since it becomes added automatically if one follows the URL --------- Co-authored-by: Waldir Leoncio <w.l.netto@medisin.uio.no>
- Loading branch information
Showing
84 changed files
with
803 additions
and
840 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,6 @@ LICENSE | |
^Meta$ | ||
^\.github$ | ||
^CRAN-SUBMISSION$ | ||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
name: pkgdown | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
|
||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
- name: Deploy to GitHub pages 🚀 | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/github-pages-deploy-action@v4.4.1 | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
folder: docs |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ doc | |
Meta | ||
/doc/ | ||
/Meta/ | ||
docs |
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.