46 lines
No EOL
884 B
YAML
46 lines
No EOL
884 B
YAML
{
|
|
"name": "DOCS",
|
|
"on": {
|
|
"push": {
|
|
"branches": [
|
|
"master"
|
|
]
|
|
},
|
|
"schedule": [
|
|
{
|
|
"cron": "0 10 * * 1"
|
|
}
|
|
]
|
|
},
|
|
"jobs": {
|
|
"build-docs": {
|
|
"runs-on": "ubuntu-latest",
|
|
"env": {
|
|
"OS": "ubuntu-latest",
|
|
"QUICKLISP_DIST": "quicklisp",
|
|
"LISP": "sbcl-bin"
|
|
},
|
|
"steps": [
|
|
{
|
|
"name": "Checkout Code",
|
|
"uses": "actions/checkout@v1"
|
|
},
|
|
{
|
|
"name": "Setup Common Lisp Environment",
|
|
"uses": "40ants/setup-lisp@v1",
|
|
"with": {
|
|
"asdf-system": "project-docs"
|
|
}
|
|
},
|
|
{
|
|
"name": "Build Docs",
|
|
"uses": "40ants/build-docs@v1",
|
|
"with": {
|
|
"asdf-system": "project-docs",
|
|
"error-on-warnings": true
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
} |