Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update GHA workflows to enforce FIMS installation #489

Merged
merged 3 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/get-gtest-codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v3
Expand All @@ -32,7 +34,7 @@ jobs:
with:
extra-packages: any::remotes
- name: install local version of FIMS
run: remotes::install_local(upgrade = "always")
run: remotes::install_github("NOAA-FIMS/FIMS", upgrade = "always", force = TRUE)
shell: Rscript {0}
- name: setup for gtest
run: FIMS:::setup_gtest()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-googletest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
extra-packages: any::remotes
- name: install local version of FIMS
run: remotes::install_local(upgrade = "always")
run: remotes::install_github("NOAA-FIMS/FIMS", upgrade = "always", force = TRUE)
shell: Rscript {0}
- name: setup for gtest
run: FIMS:::setup_gtest()
Expand Down