Added doc section about LISP env var.

This commit is contained in:
Alexander Artemenko 2021-02-18 17:11:44 +03:00
parent c7e256295c
commit b692b0f91d

View file

@ -73,7 +73,7 @@ jobs:
asdf-system: cl-info
```
The part, corresponding to an actionn call is:
The part, corresponding to an action call is:
```yaml
- uses: 40ants/setup-lisp@v1
@ -84,6 +84,15 @@ The part, corresponding to an actionn call is:
If you remove `with` part, then action will skip the ASDF system
installation.
Also, pay attention to the `env` section of the workflow. If you don't
set up a `LISP` env variable, action will set default lisp implementation
to `sbcl`:
```yaml
env:
LISP: ${{ matrix.lisp }}
```
The last step in this workflow runs tests for the specified ASDF
system. It is documented [here](https://40ants.com/run-tests).
")