setup-lisp/.github/workflows/docs.yml
Workflow config file is invalid. Please check your config file: yaml: line 21: did not find expected '-' indicator
Alexander Artemenko b803008420 Added a cache step.
2021-02-24 23:09:23 +03:00

36 lines
775 B
YAML

name: 'Docs'
on:
# This will run tests on pushes
# to master branch and every monday:
push:
branches:
- 'main'
- 'master'
- 'test-cache'
schedule:
- cron: '0 10 * * 1'
jobs:
build-docs:
runs-on: ubuntu-latest
env:
LISP: sbcl-bin
steps:
- uses: actions/checkout@v1
- name: Cache Roswell Setup
uses: actions/cache@v2
env:
cache-name: cache-roswell
with:
path: ~/.roswell
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('qlfile.lock') }}
with:
- uses: 40ants/setup-lisp@test-cache
- uses: 40ants/build-docs@v1
with:
asdf-system: docs
# ngrok-auth-token: ${{ secrets.NGROK_AUTH_TOKEN }}