Skip to content

Commit 25ea691

Browse files
committed
update namespace & coverage
1 parent 96e2624 commit 25ea691

File tree

8 files changed

+681
-6
lines changed

8 files changed

+681
-6
lines changed
Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
on:
22
push:
3+
branches:
4+
- master # Essential for Codecov baseline
35
paths: ['**.R', 'tests/**', '**.c', '**.cpp', '**.h', '**.hpp', 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win', '**.yml']
6+
47
pull_request:
8+
# Triggers when a PR is opened, updated, or marked ready for review
9+
types: [opened, synchronize, reopened, ready_for_review]
510
paths: ['**.R', 'tests/**', '**.c', '**.cpp', '**.h', '**.hpp', 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win']
6-
# schedule:
7-
# - cron: '13 12 * * 1-5'
8-
9-
name: coverage
1011

1112
jobs:
1213
coverage:
13-
if: github.event_name != 'push' || github.event_name == 'pull_request'
14+
# Run if it is a push (merge) OR if the PR is NOT a draft
15+
if: github.event_name == 'push' || github.event.pull_request.draft == false
16+
1417
uses: jasp-stats/jasp-actions/.github/workflows/coverage.yml@master
1518
with:
16-
needs_JAGS: false
19+
needs_JAGS: true
1720
secrets:
1821
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ Remotes:
3131
jasp-stats/jaspGraphs,
3232
jasp-stats/jaspTTests,
3333
dustinfife/flexplot
34+
RoxygenNote: 7.3.3

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ export(flexplot)
1919
export(flexplotInternal)
2020
export(raincloudPlots)
2121
export(raincloudPlotsInternal)
22+
export(jaspPlotBuilder)
2223
export(jaspPlotBuilderInternal)

man/Descriptives.Rd

Lines changed: 262 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/DescriptivesTimeSeries.Rd

Lines changed: 66 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)