Skip to content

Commit

Permalink
Attempt 1 with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinitnelav committed Jul 25, 2024
1 parent a11e768 commit 342961d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/R-CMD-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: R-CMD-check

on: [push, pull_request]

jobs:
R-CMD-check:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
name: R CMD Check
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up R
uses: r-lib/actions/setup-r@v2

- name: Install R dependencies
run: |
install.packages('remotes')
remotes::install_deps(dependencies = TRUE)
remotes::install_github("valentinitnelav/plotbiomes")

0 comments on commit 342961d

Please sign in to comment.