Skip to content

Commit d4ce4f4

Browse files
Merge pull request #9 from OxfordIHTM/dev
update for R 4.4.2; fix #5; fix #8
2 parents b365b14 + 7da3e33 commit d4ce4f4

File tree

7 files changed

+161
-120
lines changed

7 files changed

+161
-120
lines changed

.github/workflows/test-targets-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
test-targets-workflow:
1414
runs-on: ubuntu-latest
15-
container: rocker/tidyverse:4.4.1
15+
container: rocker/tidyverse:4.4.2
1616
env:
1717
GIT_CRYPT_KEY64: ${{ secrets.GIT_CRYPT_KEY64 }}
1818
steps:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@
55

66
_targets
77
docs
8+
9+
README.html

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ sc-policy-review
6767

6868
### R package dependencies
6969

70-
This project was built using `R 4.4.1`. This project uses the `renv` framework to record R package dependencies and versions. Packages and versions used are recorded in `renv.lock` and code used to manage dependencies is in `renv/` and other files in the root project directory. On starting an R session in the working directory, run `renv::restore()` to install R package dependencies.
70+
This project was built using `R 4.4.2`. This project uses the `renv` framework to record R package dependencies and versions. Packages and versions used are recorded in `renv.lock` and code used to manage dependencies is in `renv/` and other files in the root project directory. On starting an R session in the working directory, run `renv::restore()` to install R package dependencies.
7171

README.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,24 +40,16 @@ The project repository is structured as follows:
4040
workflow.
4141

4242
- `data-raw/` contains raw datasets, usually either downloaded from
43-
source or added manually, that are used in the project. This
44-
directory is empty given that the raw datasets used in this project
45-
are restricted and are only distributed to eligible members of the
46-
project. This directory is kept here to maintain reproducibility of
47-
project directory structure and ensure that the workflow runs as
48-
expected. Those who are collaborating on this project and who have
49-
permissions to use the raw datasets should include their copies of
50-
the raw dataset into this directory in their local versions of this
51-
repository.
43+
source or added manually, that are used in the project.
5244

5345
- `outputs/` contains compiled reports and figures produced by the
5446
workflow.
5547

5648
- `R/` contains functions developed/created specifically for use in
5749
this workflow.
5850

59-
- `reports/` contains literate code for R Markdown reports rendered in
60-
the workflow.
51+
- `reports/` contains literate code for R Markdown and/or Quarto
52+
reports rendered in the workflow.
6153

6254
- `renv/` contains `renv` package specific files and directories used
6355
by the package for maintaining R package dependencies within the
@@ -86,7 +78,7 @@ The project repository is structured as follows:
8678

8779
### R package dependencies
8880

89-
This project was built using `R 4.4.0`. This project uses the `renv`
81+
This project was built using `R 4.4.2`. This project uses the `renv`
9082
framework to record R package dependencies and versions. Packages and
9183
versions used are recorded in `renv.lock` and code used to manage
9284
dependencies is in `renv/` and other files in the root project

packages.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ library(dplyr)
1414
library(tidyr)
1515
library(openxlsx)
1616
library(ggplot2)
17+
library(quarto)
18+

0 commit comments

Comments
 (0)