attempt to get braille math labels from the SRE #44
This file contains 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 | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' # Replace with your desired Python version | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' # Replace with your desired Node.js version | |
- name: Install poetry | |
run: python -m pip install poetry | |
- name: Initialize project | |
run: python -m poetry install --all-extras | |
- name: Run Tests | |
run: python -m poetry run pytest -vv |