align after_export with prepare_export in naming #16
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
| # This workflow uses actions that are not certified by GitHub. | |
| # They are provided by a third-party and are governed by | |
| # separate terms of service, privacy policy, and support | |
| # documentation. | |
| # | |
| # See https://github.com/r-lib/actions/tree/master/examples#readme for | |
| # additional example workflows available for the R community. | |
| # workflow fails on github: a) does not support 4.5.1 yet, but problem seems rather renv installation | |
| # name: R | |
| # | |
| # on: | |
| # push: | |
| # branches: [ "master" ] | |
| # | |
| # permissions: | |
| # contents: read | |
| # | |
| # jobs: | |
| # build: | |
| # runs-on: macos-latest | |
| # strategy: | |
| # matrix: | |
| # r-version: ['4.1.1', '4.5.1'] | |
| # | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - name: Set up R ${{ matrix.r-version }} | |
| # uses: r-lib/actions/setup-r@f57f1301a053485946083d7a45022b278929a78a | |
| # with: | |
| # r-version: ${{ matrix.r-version }} | |
| # - name: Install dependencies | |
| # run: | | |
| # install.packages(c("remotes", "rcmdcheck")) | |
| # remotes::install_deps(dependencies = TRUE) | |
| # shell: Rscript {0} | |
| # - name: Check | |
| # run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error") | |
| # shell: Rscript {0} |