diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..048b7de --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,27 @@ +name: 'Docs' + +on: + # This will run tests on pushes + # to master branch and every monday: + push: + branches: + - 'main' + - 'master' + schedule: + - cron: '0 10 * * 1' + +jobs: + build-docs: + runs-on: ubuntu-latest + + env: + LISP: sbcl-bin + + steps: + - uses: actions/checkout@v1 + - uses: 40ants/setup-lisp@v1 + - uses: 40ants/build-docs@v1 + with: + asdf-system: docs + # ngrok-auth-token: ${{ secrets.NGROK_AUTH_TOKEN }} +