fix(import_phoenix_ast): handle wide-format Phoenix exports #335
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
| # ===================================================================== # | |
| # Licensed as GPL-v3.0. # | |
| # # | |
| # Developed as part of the AMRverse (https://github.com/AMRverse): # | |
| # https://github.com/AMRverse/AMRgen # | |
| # # | |
| # We created this package for both routine data analysis and academic # | |
| # research and it was publicly released in the hope that it will be # | |
| # useful, but it comes WITHOUT ANY WARRANTY OR LIABILITY. # | |
| # # | |
| # This R package is free software; you can freely use and distribute # | |
| # it for both personal and commercial purposes under the terms of the # | |
| # GNU General Public License version 3.0 (GNU GPL-3), as published by # | |
| # the Free Software Foundation. # | |
| # ===================================================================== # | |
| on: | |
| pull_request: | |
| # run in each PR in this repo | |
| branches: '**' | |
| push: | |
| branches: '**' | |
| name: check-current-dev-pkgs | |
| jobs: | |
| R-code-check: | |
| runs-on: ${{ matrix.config.os }} | |
| continue-on-error: ${{ matrix.config.allowfail }} | |
| name: ${{ matrix.config.os }} (R-${{ matrix.config.r }}) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: | |
| - {os: ubuntu-latest, r: 'release', allowfail: false} | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| R_KEEP_PKG_SOURCE: yes | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: ${{ matrix.config.r }} | |
| # use RStudio Package Manager to quickly install packages | |
| use-public-rspm: true | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: ${{ matrix.config.r }} | |
| use-public-rspm: false | |
| extra-repositories: > | |
| https://tidyverse.r-universe.dev | |
| https://r-lib.r-universe.dev | |
| https://beta.amr-for-r.org | |
| https://yihui.r-universe.dev | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| extra-packages: any::rcmdcheck | |
| needs: check | |
| upgrade: 'TRUE' | |
| - uses: r-lib/actions/check-r-package@v2 | |
| env: | |
| _R_CHECK_LENGTH_1_CONDITION_: verbose | |
| _R_CHECK_LENGTH_1_LOGIC2_: verbose |