We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a11e768 commit 342961dCopy full SHA for 342961d
.github/workflows/R-CMD-check.yml
@@ -0,0 +1,22 @@
1
+name: R-CMD-check
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ R-CMD-check:
7
+ runs-on: [ubuntu-latest, macos-latest, windows-latest]
8
+ name: R CMD Check
9
+ env:
10
+ GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v3
14
15
+ - name: Set up R
16
+ uses: r-lib/actions/setup-r@v2
17
18
+ - name: Install R dependencies
19
+ run: |
20
+ install.packages('remotes')
21
+ remotes::install_deps(dependencies = TRUE)
22
+ remotes::install_github("valentinitnelav/plotbiomes")
0 commit comments