Skip to content

feat(tests): initial setup for tests #3

feat(tests): initial setup for tests

feat(tests): initial setup for tests #3

Workflow file for this run

### Adapted from: https://github.com/neil-lindquist/CI-Utils/blob/master/config-examples/.github/workflows/ci.yml
name: CI
# Github Actions allows for running jobs on a wide variety of events
on:
push: # Commits pushed to Github
pull_request: # Pull request is update
workflow_dispatch: # Manually dispatched from Github's UI
jobs:
test:
name: "sbcl on ubuntu"
runs-on: ubuntu-latest
steps:
# This action checks out our code in the working directory
- uses: actions/checkout@v2
# setup-lisp requires an env variable to be set, not matrix.lisp
- name: Set LISP env var
run: echo "LISP=sbcl-bin" >> $GITHUB_ENV
# This action installs roswell and a few other utilities such as qlot
- uses: 40ants/setup-lisp@v2
with:
asdf-system: homestead
- uses: 40ants/run-tests@v2
with:
asdf-system: homestead