Skip to content

Commit 6654ab4

Browse files
committed
ci: pkgcheck workflow
1 parent 9e694b3 commit 6654ab4

5 files changed

Lines changed: 73 additions & 48 deletions

File tree

.github/workflows/pkgcheck.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: pkgcheck
2+
3+
# This will cancel running jobs once a new run is triggered
4+
concurrency:
5+
group: ${{ github.workflow }}-${{ github.head_ref }}
6+
cancel-in-progress: true
7+
8+
on:
9+
# Manually trigger the Action under Actions/pkgcheck
10+
workflow_dispatch:
11+
# Run on every push to main
12+
push:
13+
branches:
14+
- main
15+
- master
16+
17+
jobs:
18+
pkgcheck:
19+
runs-on: ubuntu-latest
20+
permissions:
21+
issues: write
22+
steps:
23+
- uses: ropensci-review-tools/pkgcheck-action@main

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.DS_Store
66
.quarto
77
PLAYGROUND.R
8-
BENCHMARKS.R
8+
dev.R
99

1010
/.quarto/
1111
cran-comments.md

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: tidyhydro
22
Type: Package
33
Title: Tidy Metrics for Assessing Hydrological Models Performance
4-
Version: 0.1.1
4+
Version: 0.1.1.9000
55
Authors@R:
66
person(given = "Anatoly", family = "Tsyplenkov", email = "atsyplenkov@fastmail.com", role = c("cre", "aut", "cph"), comment = c(ORCID = "0000-0003-4144-8402"))
77
Maintainer: Anatoly Tsyplenkov <atsyplenkov@fastmail.com>

NEWS.md

Lines changed: 46 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,46 @@
1-
# tidyhydro 0.1.1
2-
3-
## New features
4-
5-
- Added support for modified Kling-Gupta Efficiency (`kge2012`), aka $KGE'$ ([#8](https://github.com/atsyplenkov/tidyhydro/issues/8))
6-
- Added vignettes and website ([#14](https://github.com/atsyplenkov/tidyhydro/issues/14))
7-
8-
## Bug fixes
9-
10-
- Improved documenation by switching from `\url` to `\doi`
11-
- Removed unicode characters α, β
12-
13-
## Miscellaneous
14-
- Created website with vignettes (https://atsyplenkov.github.io/tidyhydro)
15-
16-
# tidyhydro 0.1.0
17-
18-
## New features
19-
20-
- Added Kling-Gupta Efficiency (`kge`).
21-
- Added Mean Squared Error (`mse`).
22-
- Added example dataset (`avacha`) with observed and modelled daily water discharge measurements in cubic meters per second ([#6](https://github.com/atsyplenkov/tidyhydro/issues/6)).
23-
24-
## Bug fixes
25-
26-
- `nse` with `na_rm = TRUE` flag and missing values present in both simulated and observed time series now returns the same results as `hydroGOF::NSE()`. Previously, it did not skip missing values in the observed time series.
27-
28-
## Miscellaneous
29-
30-
- Introduced parameter testing via `quickcheck` ([#3](https://github.com/atsyplenkov/tidyhydro/issues/3)). Estimated metrics are now validated against their implementations in the `hydroGOF` package.
31-
- Removed unnecessary dependencies ([#2](https://github.com/atsyplenkov/tidyhydro/issues/2)).
32-
- Updated documentation with equations and references.
33-
34-
# tidyhydro 0.0.4
35-
36-
## New features
37-
38-
- Added Standard Factorial Error (`sfe`).
39-
40-
# tidyhydro 0.0.3
41-
42-
## New features
43-
44-
- Added PRediction Error Sum of Squares (`press`).
1+
# tidyhydro (development version)
2+
3+
# tidyhydro 0.1.1
4+
5+
## New features
6+
7+
- Added support for modified Kling-Gupta Efficiency (`kge2012`), aka $KGE'$ ([#8](https://github.com/atsyplenkov/tidyhydro/issues/8))
8+
- Added vignettes and website ([#14](https://github.com/atsyplenkov/tidyhydro/issues/14))
9+
10+
## Bug fixes
11+
12+
- Improved documenation by switching from `\url` to `\doi`
13+
- Removed unicode characters α, β
14+
15+
## Miscellaneous
16+
- Created website with vignettes (https://atsyplenkov.github.io/tidyhydro)
17+
18+
# tidyhydro 0.1.0
19+
20+
## New features
21+
22+
- Added Kling-Gupta Efficiency (`kge`).
23+
- Added Mean Squared Error (`mse`).
24+
- Added example dataset (`avacha`) with observed and modelled daily water discharge measurements in cubic meters per second ([#6](https://github.com/atsyplenkov/tidyhydro/issues/6)).
25+
26+
## Bug fixes
27+
28+
- `nse` with `na_rm = TRUE` flag and missing values present in both simulated and observed time series now returns the same results as `hydroGOF::NSE()`. Previously, it did not skip missing values in the observed time series.
29+
30+
## Miscellaneous
31+
32+
- Introduced parameter testing via `quickcheck` ([#3](https://github.com/atsyplenkov/tidyhydro/issues/3)). Estimated metrics are now validated against their implementations in the `hydroGOF` package.
33+
- Removed unnecessary dependencies ([#2](https://github.com/atsyplenkov/tidyhydro/issues/2)).
34+
- Updated documentation with equations and references.
35+
36+
# tidyhydro 0.0.4
37+
38+
## New features
39+
40+
- Added Standard Factorial Error (`sfe`).
41+
42+
# tidyhydro 0.0.3
43+
44+
## New features
45+
46+
- Added PRediction Error Sum of Squares (`press`).

codemeta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"codeRepository": "https://github.com/atsyplenkov/tidyhydro",
99
"issueTracker": "https://github.com/atsyplenkov/tidyhydro/issues",
1010
"license": "https://spdx.org/licenses/MIT",
11-
"version": "0.1.1",
11+
"version": "0.1.1.9000",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",
@@ -142,7 +142,7 @@
142142
},
143143
"SystemRequirements": null
144144
},
145-
"fileSize": "102.604KB",
145+
"fileSize": "103.052KB",
146146
"releaseNotes": "https://github.com/atsyplenkov/tidyhydro/blob/master/NEWS.md",
147147
"readme": "https://github.com/atsyplenkov/tidyhydro/blob/master/README.md",
148148
"keywords": ["r", "r-package", "rstats"]

0 commit comments

Comments
 (0)