Skip to content

fix(tokenizer): update string parsing regex to handle \\" #45

fix(tokenizer): update string parsing regex to handle \\"

fix(tokenizer): update string parsing regex to handle \\" #45

Workflow file for this run

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