-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (44 loc) · 1.37 KB
/
document.yaml
File metadata and controls
57 lines (44 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: document
on:
push:
branches: [ "testing-actions" ]
permissions:
contents: write
jobs:
document:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgsl-dev
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::roxygen2
needs: pr-document
# - name: Specific Rfast dependency
# run: |
# install.packages("remotes")
# remotes::install_version("Rfast", version = "2.0.8")
# print(.libPaths()) # Debugging
# installed_pkgs <- installed.packages()[, "Package"]
# print(installed_pkgs) # Debugging
# shell: Rscript {0}
- name: Document
run: |
roxygen2::roxygenise()
shell: Rscript {0}
- name: commit
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add man/\* NAMESPACE
git diff --staged --quiet || git commit -m 'Automatic documentation'
git pull --ff-only
git push origin