Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
13 changes: 8 additions & 5 deletions .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
on:
push:
branches:
- master # Essential for Codecov baseline
paths: ['**.R', 'tests/**', '**.c', '**.cpp', '**.h', '**.hpp', 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win', '**.yml']

pull_request:
# Triggers when a PR is opened, updated, or marked ready for review
types: [opened, synchronize, reopened, ready_for_review]
paths: ['**.R', 'tests/**', '**.c', '**.cpp', '**.h', '**.hpp', 'DESCRIPTION', 'NAMESPACE', 'MAKEVARS', 'MAKEVARS.win']
# schedule:
# - cron: '13 12 * * 1-5'

name: coverage

jobs:
coverage:
if: github.event_name != 'push' || github.event_name == 'pull_request'
# Run if it is a push (merge) OR if the PR is NOT a draft
if: github.event_name == 'push' || github.event.pull_request.draft == false

uses: jasp-stats/jasp-actions/.github/workflows/coverage.yml@master
with:
needs_JAGS: false
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium test

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ Remotes:
jasp-stats/jaspGraphs,
jasp-stats/jaspTTests,
dustinfife/flexplot
RoxygenNote: 7.3.3
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ export(flexplot)
export(flexplotInternal)
export(raincloudPlots)
export(raincloudPlotsInternal)
export(jaspPlotBuilder)
export(jaspPlotBuilderInternal)
262 changes: 262 additions & 0 deletions man/Descriptives.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions man/DescriptivesTimeSeries.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading