Skip to content

Commit

Permalink
Merge pull request #82 from nutriverse/dev
Browse files Browse the repository at this point in the history
update README
  • Loading branch information
ernestguevarra authored Mar 4, 2024
2 parents 9ccdaeb + 64b21c1 commit 6aa3860
Show file tree
Hide file tree
Showing 134 changed files with 67 additions and 16,740 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

Expand All @@ -47,3 +47,4 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
48 changes: 48 additions & 0 deletions .github/workflows/pkgdown.yaml
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: [main, master]
pull_request:
branches: [main, 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@v4

- 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/[email protected]
with:
clean: false
branch: gh-pages
folder: docs
8 changes: 4 additions & 4 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-r@v2
with:
Expand All @@ -31,20 +31,20 @@ jobs:
covr::codecov(
quiet = FALSE,
clean = FALSE,
install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
)
shell: Rscript {0}

- name: Show testthat output
if: always()
run: |
## --------------------------------------------------------------------
find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true
find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true
shell: bash

- name: Upload test results
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-test-failures
path: ${{ runner.temp }}/package
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Encoding: UTF-8
Language: en-GB
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.3.1
VignetteBuilder: knitr
URL: https://nutriverse.io/squeacr/, https://github.com/nutriverse/squeacr
BugReports: https://github.com/nutriverse/squeacr/issues
10 changes: 5 additions & 5 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ In the recent past, measurement of coverage has been mainly through two-stage cl

## Installation

The `squeacr` package is not yet available on [CRAN](https://cran.r-project.org).

The development version of `squeacr` can be installed via [GitHub](https://github.com/nutriverse/squeacr) as follows:
The `squeacr` package is not yet available on [CRAN](https://cran.r-project.org) but can be installed from the [Nutriverse R universe](https://nutriverse.r-universe.dev) as follows:

```{r install, echo = TRUE, eval = FALSE}
if(!require(remotes)) install.packages("remotes")
remotes::install_github("nutriverse/squeacr")
install.packages(
"squeacr",
repos = c('https://nutriverse.r-universe.dev', 'https://cloud.r-project.org')
)
```

## What does `squeacr` do?
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ conducting a SQUEAC investigation.
## Installation

The `squeacr` package is not yet available on
[CRAN](https://cran.r-project.org).

The development version of `squeacr` can be installed via
[GitHub](https://github.com/nutriverse/squeacr) as follows:
[CRAN](https://cran.r-project.org) but can be installed from the
[Nutriverse R universe](https://nutriverse.r-universe.dev) as follows:

``` r
if(!require(remotes)) install.packages("remotes")
remotes::install_github("nutriverse/squeacr")
install.packages(
"squeacr",
repos = c('https://nutriverse.r-universe.dev', 'https://cloud.r-project.org')
)
```

## What does `squeacr` do?
Expand All @@ -64,7 +64,6 @@ follows:

``` r
citation("squeacr")
#>
#> To cite squeacr in publications use:
#>
#> Ernest Guevarra (2023). squeacr: Semi-Quantitative Evaluation of
Expand Down
112 changes: 0 additions & 112 deletions docs/404.html

This file was deleted.

Loading

0 comments on commit 6aa3860

Please sign in to comment.