-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from dieghernan/across
Fix test to adapt to upcoming version of `sf`
- Loading branch information
Showing
10 changed files
with
110 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
# | ||
# NOTE: This workflow is overkill for most R packages and | ||
# check-standard.yaml is likely a better choice. | ||
# usethis::use_github_action("check-standard") will install it. | ||
on: | ||
schedule: | ||
- cron: '00 12 * * 2,5' | ||
workflow_dispatch: | ||
|
||
name: R-CMD-check-sf-devel | ||
|
||
jobs: | ||
R-CMD-check-sf-devel: | ||
runs-on: ${{ matrix.config.os }} | ||
|
||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- {os: windows-latest, r: 'release'} | ||
- {os: macOS-latest, r: 'release'} | ||
- {os: ubuntu-latest, r: 'release'} | ||
|
||
|
||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: ${{ matrix.config.r }} | ||
http-user-agent: ${{ matrix.config.http-user-agent }} | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
cache-version: sf-devel | ||
extra-packages: | | ||
any::rcmdcheck | ||
needs: check | ||
|
||
- name: Install sf from runiverse | ||
run: | | ||
# Install sf from rspatial runiverse | ||
install.packages('sf', repos = c('https://r-spatial.r-universe.dev', 'https://cloud.r-project.org')) | ||
# Display version | ||
cat(as.character(packageVersion("sf"))) | ||
shell: Rscript {0} | ||
- uses: r-lib/actions/check-r-package@v2 | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ message: 'To cite package "tidyterra" in publications use:' | |
type: software | ||
license: MIT | ||
title: 'tidyterra: ''tidyverse'' Methods and ''ggplot2'' Helpers for ''terra'' Objects' | ||
version: 0.5.0 | ||
version: 0.5.0.9000 | ||
doi: 10.21105/joss.05751 | ||
abstract: Extension of the 'tidyverse' for 'SpatRaster' and 'SpatVector' objects of | ||
the 'terra' package. It includes also new 'geom_' functions that provide a convenient | ||
|
@@ -87,6 +87,9 @@ references: | |
url: https://r-datatable.com | ||
repository: https://CRAN.R-project.org/package=data.table | ||
authors: | ||
- family-names: Barrett | ||
given-names: Tyson | ||
email: [email protected] | ||
- family-names: Dowle | ||
given-names: Matt | ||
email: [email protected] | ||
|
@@ -192,7 +195,11 @@ references: | |
authors: | ||
- family-names: Wickham | ||
given-names: Hadley | ||
email: [email protected] | ||
email: [email protected] | ||
- family-names: Pedersen | ||
given-names: Thomas Lin | ||
email: [email protected] | ||
orcid: https://orcid.org/0000-0002-5147-4711 | ||
- family-names: Seidel | ||
given-names: Dana | ||
year: '2023' | ||
|
@@ -201,7 +208,7 @@ references: | |
abstract: 'sf: Simple Features for R' | ||
notes: Imports | ||
url: https://r-spatial.github.io/sf/ | ||
repository: https://CRAN.R-project.org/package=sf | ||
repository: https://r-spatial.r-universe.dev | ||
authors: | ||
- family-names: Pebesma | ||
given-names: Edzer | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: tidyterra | ||
Title: 'tidyverse' Methods and 'ggplot2' Helpers for 'terra' Objects | ||
Version: 0.5.0 | ||
Version: 0.5.0.9000 | ||
Authors@R: c( | ||
person("Diego", "Hernangómez", , "[email protected]", role = c("aut", "cre", "cph"), | ||
comment = c(ORCID = "0000-0001-8457-4658")), | ||
|
This file contains 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 file contains 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 file contains 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 file contains 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 file contains 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 file contains 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 file contains 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