Skip to content

Commit

Permalink
chg version [skip CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
yvesdeville committed Dec 2, 2024
1 parent 8c72db7 commit cb5629e
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 2 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
&# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# See https://github.com/r-lib/actions/tree/master/examples#readme for
# additional example workflows available for the R community.

name: r-cmd-check

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
r-cmd-check:
runs-on: ${{ matrix.config.os }}

strategy:
fail-fast: false
matrix:
config:
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'release'}

steps:
- uses: actions/checkout@v3

- name: Install system dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get install libcurl4-openssl-dev
- name: Set up R ${{ matrix.config.r }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}

- name: Install dependencies
run: |
install.packages(pkgs = c("remotes", "rcmdcheck"), dependencies = TRUE, type = ifelse(.Platform$OS.type == "windows", "binary", getOption("pkgType")))
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}

- name: Check
run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--ignore-vignettes"), build_args = c("--no-build-vignettes"), error_on = "warning", check_dir = "check")
shell: Rscript {0}
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: NSGEV
Type: Package
Title: Non-Stationary GEV Time Series
Version: 0.1.9
Date: 2024-11-29
Version: 0.2.0
Date: 2024-12-02
Authors@R:
c(person(given = "Yves",
family = "Deville",
Expand Down

0 comments on commit cb5629e

Please sign in to comment.