Skip to content

Commit

Permalink
added .github folder
Browse files Browse the repository at this point in the history
  • Loading branch information
JuKo007 committed Dec 19, 2023
1 parent 7b11a69 commit 7cc9308
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/r-cmd-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: R-CMD-check

on: [push, pull_request]

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: |
install.packages('remotes')
remotes::install_deps(dependencies = TRUE)
- name: Check
run: R CMD build . && R CMD check *tar.gz

0 comments on commit 7cc9308

Please sign in to comment.