-
Notifications
You must be signed in to change notification settings - Fork 0
Add Shiny app, tests, vignette, and CI #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ^.*\.Rproj$ | ||
| ^\.Rproj\.user$ | ||
| ^\.github$ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| *.html |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| # 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: | ||
| pull_request: | ||
|
|
||
| name: R-CMD-check.yaml | ||
|
|
||
| permissions: read-all | ||
|
|
||
| jobs: | ||
| R-CMD-check: | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
| R_KEEP_PKG_SOURCE: yes | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
|
|
||
| - uses: r-lib/actions/setup-r@v2 | ||
|
|
||
| - uses: r-lib/actions/setup-r-dependencies@v2 | ||
| with: | ||
| extra-packages: any::rcmdcheck | ||
| needs: check | ||
|
|
||
| - uses: r-lib/actions/check-r-package@v2 | ||
| with: | ||
| upload-snapshots: true | ||
| build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")' | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good setup of continuous integration and from what I can see everything loaded correctly and worked fine!! Well done :))) |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| .Rproj.user | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. appropriate git ignore set up |
||
| .Rhistory | ||
| .RData | ||
| .Ruserdata | ||
| inst/doc | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,12 @@ Encoding: UTF-8 | |
| LazyData: true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. description seems really good too!!! |
||
| RoxygenNote: 7.3.3 | ||
| Imports: | ||
| checkmate (>= 2.3.4) | ||
| checkmate (>= 2.3.4), | ||
| shiny (>= 1.13.0) | ||
| Suggests: | ||
| knitr, | ||
| rmarkdown, | ||
| shinytest2, | ||
| testthat (>= 3.0.0) | ||
| Config/testthat/edition: 3 | ||
| VignetteBuilder: knitr | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| # Generated by roxygen2: do not edit by hand | ||
|
|
||
| export(create_manual_sequence) | ||
| export(generate_sequence) | ||
| export(get_card_states) | ||
| export(get_current_number) | ||
| export(is_winner) | ||
| export(run_app) | ||
| export(validate_manual_sequence) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. seems like everything is updated well |
||
| import(shiny) | ||
| importFrom(checkmate,assert_numeric) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
appropriate rbuildignore