Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

[doc] put abandonment notice #34

[doc] put abandonment notice

[doc] put abandonment notice #34

Workflow file for this run

on:
push:
pull_request:
branches: [ master dev ]
jobs:
test:
name: ${{ matrix.lisp }}
strategy:
matrix:
lisp: [sbcl, ccl]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update $PATH
run: |
echo $PATH
echo "PATH=$HOME/bin:$PATH" >> $GITHUB_ENV
- name: Check $PATH
run: echo $PATH
# February 2020:
# cl-travis issue - tput: No value for $TERM and no -T specified
# roswell issue - libcurl3 versions
- name: Download implementation
env:
LISP: ${{ matrix.lisp }}
run: |
pwd
ls -l
bash <(curl -s https://raw.githubusercontent.com/digikar99/lisp-travis-lite/master/run.sh)
- name: Compile and Run Tests
run: |
cl --eval '(progn (push #P"./" ql:*local-project-directories*) (ql:quickload "trivial-types"))' --eval '(asdf:test-system "trivial-types")'