String unescaping on tokenizer before adding string token to list. #19
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: Build CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Get build dependencies | |
run: sudo apt install build-essential make -y | |
- name: Build Zhivo | |
run: | | |
chmod +x build.sh | |
./build.sh | |
- name: Build verification | |
run: | | |
ls dist -ral | |
find dist | sort | sed -e "s/[^-][^\/]*\// |/g" -e "s/|\([^ ]\)/|-\1/" | |
- name: Build test | |
run: | | |
echo "([[+1, -2, 3.1416, ~~~~(\"Hello\")], [\"damn\", 10e-3, \"world!\"], nil]);" > test.zhv | |
./dist/zhivo |