Add quantiles parameter to graph.curve.params()
#933
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Workflow derived from https://github.com/IndrajeetPatil/statsExpressions/blob/main/.github/workflows/check-readme.yaml | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| name: check-readme | |
| jobs: | |
| check-readme: | |
| runs-on: ${{ matrix.config.os }} | |
| name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - { os: ubuntu-latest, r: "release" } | |
| #- { os: ubuntu-latest, r: "devel" } | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| with: | |
| pandoc-version: "latest" | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: ${{ matrix.config.r }} | |
| http-user-agent: "release" | |
| use-public-rspm: true | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| pak-version: devel | |
| upgrade: "TRUE" | |
| extra-packages: | | |
| local::. | |
| any::qrcode | |
| - name: Render README | |
| run: | | |
| options( | |
| crayon.enabled = TRUE, | |
| # warnPartialMatchArgs = TRUE, | |
| # warnPartialMatchAttr = TRUE, | |
| # warnPartialMatchDollar = TRUE, | |
| warn = 2L | |
| ) | |
| rmarkdown::render("README.Rmd") | |
| shell: Rscript {0} |