fix: initial state iso-check #280
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: C/C++ CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
LMNTAL_HOME: ${{ github.workspace }}/lmntal-compiler | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: lukka/get-cmake@latest | |
- run: sudo apt -qq update | |
- run: sudo apt install -y ant re2c ruby-full bison flex doxygen zlib1g-dev | |
- run: git clone https://github.com/lmntal/lmntal-compiler.git | |
- run: cd lmntal-compiler && ant && cd .. | |
- run: cmake -B build -DCMAKE_BUILD_TYPE=Release | |
- run: cd build && make |