chore: remove stale docs #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Unit Tests | |
strategy: | |
matrix: | |
compiler: ["sbcl", "ecl"] | |
steps: | |
- name: Clone the Project | |
uses: actions/checkout@v4 | |
- name: Set up Common Lisp | |
uses: fosskers/common-lisp@v1 | |
with: | |
compiler: ${{ matrix.compiler }} | |
- name: Test | |
run: | | |
vend test ${{ matrix.compiler }} |