Skip to content

Refactor error handling in parser and semantic analyzer #48

Refactor error handling in parser and semantic analyzer

Refactor error handling in parser and semantic analyzer #48

Workflow file for this run

name: Deploy firescript Documentation
on:
push:
branches:
- main # Set this to your default branch
paths:
- 'docs/**'
- 'mkdocs.yml'
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Deploy Documentation
run: mkdocs gh-deploy --force --clean