Skip to content

Commit

Permalink
Update check files
Browse files Browse the repository at this point in the history
  • Loading branch information
realxinzhao committed Oct 26, 2023
1 parent b9c430a commit 537e971
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up R
uses: r-lib/actions/setup-r@v1
with:
r-version: 4.0
r-version: 4.1 # Use a version that's available, like 4.1 or 4.0.5

- name: Install dependencies
run: R -e 'install.packages(c("devtools", "roxygen2"))'
Expand All @@ -28,4 +28,4 @@ jobs:
run: R -e 'devtools::install()'

- name: Run tests
run: R -e 'devtools::test()'
run: R -e 'devtools::test()'
31 changes: 15 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,60 +4,59 @@ on:
push:
branches:
- main
- dev

jobs:
build:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- { os: ubuntu-latest, r: 'devel', cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest"}

env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
GITHUB_PAT: ${{ secrets.GH_PAT}}
HOMEBREW_NO_INSTALL_CLEANUP: 1

steps:
- uses: actions/checkout@v1
- uses: r-lib/actions/setup-r@v2-branch
with:
r-version: '3.6'
r-version: '4.1'
- uses: r-lib/actions/setup-pandoc@v2-branch
- uses: r-lib/actions/setup-tinytex@v2-branch
- name: Cache R packages
uses: actions/cache@v1
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-

- name: Cache R packages
uses: actions/cache@v1
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-

- name: Ubuntu config
if: startsWith(matrix.config.os, 'ubuntu')
run: |
sudo add-apt-repository ppa:ubuntugis/ppa
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev libudunits2-dev libgdal-dev libgeos-dev libproj-dev libavfilter-dev libmagick++-dev
- name: MacOS Config
if: startsWith(matrix.config.os, 'macOS')
run: |
brew install pkg-config
brew install gdal
brew install geos
brew install imagemagick@6
- name: Install dependencies
run: |
install.packages(c("remotes","rcmdcheck"), repos = "https://cloud.r-project.org")
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}

- name: Check
run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
shell: Rscript {0}
2 changes: 1 addition & 1 deletion .github/workflows/r.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
r-version: ['4.0.1', '4.1.1']
r-version: ['3.6.3', '4.2.1']

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- dev

jobs:
test:
Expand Down

0 comments on commit 537e971

Please sign in to comment.