accidentally made the same mistakes with labels => fixed cond tailcall #34
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: Analyze code | |
on: [push] | |
jobs: | |
run_tests: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Info | |
run: | | |
chmod +x build.sh | |
./build.sh info | |
shell: bash | |
- name: Analyze | |
run: | | |
chmod +x build.sh | |
./build.sh analyze | |
shell: bash | |
- name: Try compile | |
run: | | |
chmod +x build.sh | |
./build.sh | |
shell: bash |