fix(tokenizer): update string parsing regex to handle \\" #45
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: Tests CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Checkout std | |
| uses: actions/checkout@v2 | |
| with: | |
| repository: ArkScript-lang/std | |
| path: './std-latest' | |
| - name: Checkout Ark | |
| uses: actions/checkout@v2 | |
| with: | |
| repository: ArkScript-lang/Ark | |
| path: './ark-latest' | |
| - name: Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.9' | |
| - run: pip install -r requirements.txt | |
| - run: | | |
| export ARKDOC_LOGLEVEL=DEBUG | |
| python -m arkdoc 3.1.0 std-latest/ ark-latest/src/arkreactor/Builtins --html out || exit 1 |