Fix completion-trie test #397
This file contains hidden or 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: meta-c CI | |
| on: | |
| status: | |
| branches: [ $default-branch, main ] | |
| push: | |
| branches: [ $default-branch, main ] | |
| pull_request: | |
| branches: [ $default-branch, main ] | |
| workflow_dispatch: | |
| jobs: | |
| build_linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Gen code and Run tests | |
| run: ./gen_code.sh && ./run_tests.sh | |
| - name: Build REPL | |
| run: ./build_repl.sh | |
| build_windows: | |
| runs-on: windows-2019 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: ilammy/msvc-dev-cmd@v1 | |
| - name: Gen code and Run tests | |
| run: ./gen_code.bat && ./run_tests.bat | |
| - name: Build REPL | |
| run: cd repl && ./build.bat |