setup-lisp/.github/workflows/docs.yml
2021-02-06 12:59:05 +03:00

31 lines
703 B
YAML

name: 'Docs'
on:
# This will run tests on pushes
# to master branch or on pull merges:
push:
branches:
- 'main'
- 'master'
# This will run tests for every pull request:
pull_request:
# Rerun tests at 10 AM every Monday
# to check if they still work with latest dependencies.
schedule:
- cron: '0 10 * * 1'
jobs:
build-docs:
runs-on: ubuntu-latest
env:
LISP: sbcl-bin
steps:
- uses: actions/checkout@v1
- uses: 40ants/cl-info/.github/actions/setup-lisp@custom-action
with:
asdf-system: cl-info
- uses: 40ants/cl-info/.github/actions/build-docs@custom-action
with:
asdf-system: cl-info