Skip to content

Commit

Permalink
circleci CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinHankin committed Jul 17, 2024
1 parent af38f67 commit 2dd9112
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@
^pkgdown$
^inst/arxiv
^inst/sticker
^.circleci/config.yml$
16 changes: 16 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
jobs:
build:
docker:
- image: rocker/verse:3.5.3
steps:
- checkout
- run:
name: Install package dependencies
command: R -e "devtools::install_deps(dep = TRUE)"
- run:
name: Build package
command: R CMD build .
- run:
name: Check package
command: R CMD check *tar.gz

0 comments on commit 2dd9112

Please sign in to comment.