TODO: document volcano plotly-vs-ggplot decision (leave both; native … #859
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
| name: R-CMD-check-prolfqua | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| R-CMD-check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| r-version: ['4.5.2'] | |
| steps: | |
| - uses: actions/checkout@v6.0.3 | |
| - name: Set up R ${{ matrix.r-version }} | |
| uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: ${{ matrix.r-version }} | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libcurl4-openssl-dev libicu-dev pandoc | |
| - name: Install R dependencies | |
| uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| extra-packages: any::rcmdcheck, any::covr | |
| - name: R CMD check | |
| uses: r-lib/actions/check-r-package@v2 | |
| with: | |
| error-on: '"error"' | |
| - name: Code coverage | |
| if: success() | |
| run: covr::codecov(type = "all", token = Sys.getenv('CODECOV_TOKEN')) | |
| shell: Rscript {0} |