add SRFI 197 (pipeline operators) #91
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: Continuous Integration | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install chez scheme | |
run: sudo apt install chezscheme | |
- name: run tests | |
run: | | |
cd ../ | |
ln -s $(pwd)/chez-srfi $(pwd)/srfi | |
cd srfi | |
scheme-script link-dirs.chezscheme.sps | |
cd tests | |
sh test_all.sh ../../ |