From 05607533b4ff77418fac2dc21dea0aa9d0ae7a7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 18 Feb 2021 14:16:16 +0000 Subject: [PATCH] Update docs --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c9a437..91ef351 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,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 @@ -87,6 +87,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).