Remove LFQDataWriter, lfq_write_table, and unused dependency imports #807
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
| name: R-CMD-check-prolfqua | |
| on: | |
| push: | |
| branches: [ Modelling2R6 ] | |
| pull_request: | |
| branches: [ Modelling2R6 ] | |
| jobs: | |
| R-CMD-check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| r-version: ['4.5.2'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - 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} |