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: | ||
- dev | ||
jobs: | ||
test_ecl: | ||
name: Run tests on ECL | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download and Install ECL | ||
run: | | ||
echo "::group::Downloading ECL" | ||
wget https://common-lisp.s3.eu-central-1.amazonaws.com/ecl-23.9.9.tgz | ||
tar -xzf ecl-23.9.9.tgz | ||
cd ecl-23.9.9 | ||
./configure | ||
make | ||
sudo make install | ||