Github Actions checkout version updated #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
name: CI | |
on: | |
push: | |
branches: [ develop, master ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install interpreter | |
run: sudo apt-get install sbcl | |
- name: Prepare Quicklisp | |
run: | | |
curl --no-progress-bar --retry 10 -o quicklisp.lisp -L http://beta.quicklisp.org/quicklisp.lisp | |
mkdir -p quicklisp | |
sbcl --load quicklisp.lisp --eval '(quicklisp-quickstart:install :path #P"./quicklisp/")' --non-interactive | |
- name: Test | |
run: sbcl --load quicklisp/setup.lisp --load test-script/test-runner.lisp --non-interactive |