File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change 1
1
name : ' Analythium Actions: R CMD check TEST'
2
2
description : ' Check an R package'
3
- author : ' Analythium '
3
+ author : ' Peter Solymos '
4
4
inputs :
5
- who-to-greet : # id of input
6
- description : ' Who to greet'
7
- required : true
8
- default : ' World'
9
- outputs :
10
- time : # id of output
11
- description : ' The time we greeted you'
5
+ working-directory :
6
+ description : ' The directory where the package can be found.'
7
+ default : ' .'
12
8
runs :
13
9
using : ' docker'
14
- image : ' Dockerfile'
15
- args :
16
- - ${{ inputs.who-to-greet }}
10
+ image : ghcr.io/analythium/actions:latest
11
+ steps :
12
+ - name : Install dependencies
13
+ run : deps-cli all --dir ${{ inputs.working-directory }}
14
+ - name : Check R package
15
+ run : R -q -e 'devtools::check("${{ inputs.working-directory }}", document=TRUE)'
You can’t perform that action at this time.
0 commit comments