Skip to content

Commit 2d7ab4a

Browse files
authored
Merge pull request #254 from cmu-delphi/ndefries/test-pak-install
Fix actions package install issue
2 parents 04c9c3b + 8aa6ddb commit 2d7ab4a

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-20.04
88
steps:
99
- uses: actions/checkout@v2
10-
- uses: r-lib/actions/setup-r@v1
10+
- uses: r-lib/actions/setup-r@v2
1111
with:
1212
use-public-rspm: true
13-
- uses: r-lib/actions/setup-r-dependencies@v1
13+
- uses: r-lib/actions/setup-r-dependencies@v2
1414
- name: Style / Format
1515
shell: Rscript {0}
1616
run: styler::style_dir(dry="fail")

app/R/data_manipulation.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
renameScoreCol <- function(filteredScoreDf, scoreType, coverageInterval) {
32
if (scoreType == "wis") {
43
filteredScoreDf <- filteredScoreDf %>% rename(Score = wis)

app/R/delphiLayout.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# create a common delphi header
32
delphiHeaderUI <- function(id = "delphi-header", title = "My App") {
43
# Get css file

app/R/exportScores.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
exportScoresUI <- function(id = "exportScores") {
32
ns <- shiny::NS(id)
43
div(

0 commit comments

Comments
 (0)