Skip to content

Added support for all sub and super scripts #8

Added support for all sub and super scripts

Added support for all sub and super scripts #8

Workflow file for this run

name: Run unit tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Install docxlatex
run: pip install -e .
- name: Run Tests
run: python -m unittest
working-directory: ./tests