-
Notifications
You must be signed in to change notification settings - Fork 25
Migrate CI to GitHub Actions #463
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
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
0993583
remove travis CI integration
jwildfire 99995fe
basic gh actions setup for dev branch. fix #462
jwildfire fe6911c
Merge branch 'dev' into gh-actions
jwildfire cc1edab
fixing checks - update dependencies
jwildfire 6ae1a0d
fixing checks - remove non-ascii char
jwildfire ac618a7
merge dev
jwildfire 1579200
resolve description conflict
jwildfire 7c1fb0c
add missing comma
jwildfire d59fa30
passify tests
jwildfire 8796c80
clean up internal dependencies to clear warnings
jwildfire 36f420e
more documentation tweaks. remove chart dataframe
jwildfire c63ad72
document all parameters
jwildfire a08171d
fix variable scope throughout
jwildfire 551a13f
reduce dependencies. fix #488
jwildfire 7fcd687
update workflow to install phantomjs
jwildfire d29fd31
update dependencies in test apps
jwildfire ea42af9
remove devtools reference
jwildfire 9154efe
show full test log
jwildfire f8184a2
show full test log
jwildfire 8657818
attempt to skip in gh actions
jwildfire 2ba81e1
try different workflow ...
jwildfire 14aa46f
try different workflow ...
jwildfire d207a18
re-run check action
jwildfire 0f432ee
try adding sys.sleep()
jwildfire 6d59bc7
skip widget tests
jwildfire 5ed98ca
update contact info. fix #452
jwildfire 5b06bbc
update contact info. fix #452
jwildfire 0976312
update contact info. fix #452
jwildfire d6f7e4a
fix description (again)
jwildfire File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 @@ | ||
| *.html |
This file contains hidden or 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,46 @@ | ||
| # Run R CMD Check on PR to dev | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: | ||
| - dev | ||
|
|
||
| name: R-CMD-check | ||
|
|
||
| jobs: | ||
| R-CMD-check: | ||
| runs-on: macOS-latest | ||
| env: | ||
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - uses: r-lib/actions/setup-r@v1 | ||
| - name: Install dependencies | ||
| run: | | ||
| install.packages(c("remotes", "rcmdcheck")) | ||
| remotes::install_deps(dependencies = TRUE) | ||
| shell: Rscript {0} | ||
| - name: Find PhantomJS path | ||
| id: phantomjs | ||
| run: | | ||
| echo "::set-output name=path::$(Rscript -e 'cat(shinytest:::phantom_paths()[[1]])')" | ||
| - name: Cache PhantomJS | ||
| uses: actions/cache@v2 | ||
| with: | ||
| path: ${{ steps.phantomjs.outputs.path }} | ||
| key: ${{ matrix.config.os }}-phantomjs | ||
| restore-keys: ${{ matrix.config.os }}-phantomjs | ||
| - name: Install PhantomJS | ||
| shell: Rscript {0} | ||
| run: | | ||
| options(install.packages.check.source = "no") | ||
| if (!shinytest::dependenciesInstalled()) shinytest::installDependencies() | ||
| - name: Check | ||
| env: | ||
| _R_CHECK_CRAN_INCOMING_: false | ||
| run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "warning", check_dir = "check") | ||
| shell: Rscript {0} | ||
| - name: Show testthat output | ||
| if: always() | ||
| run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true | ||
| shell: bash |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I believe we need to list the copyright holder from the LICENSE if its not going to be the maintainers. CRAN will reject a package if the copyright holder isn't noted in the description
Uh oh!
There was an error while loading. Please reload this page.
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.
Thanks for the heads up, @elimillera. I filed #497 to deal with this before release.