More on UNICODE_CHARACTER_TO_ASCII (#173) #111
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: Mathics3 Scanner (macOS) | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| os: [macOS] | |
| python-version: ['3.14', '3.12', '3.13'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e . | |
| - name: Install Mathics3 scanner without JSON files | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e . | |
| - name: Install JSON files | |
| run: | | |
| python -m mathics_scanner.generate.boxing_characters | |
| python -m mathics_scanner.generate.named_characters | |
| python -m mathics_scanner.generate.operators | |
| - name: Test Mathics3 Scanner | |
| run: | | |
| pip install -r requirements-dev.txt | |
| pip install -r requirements-full.txt | |
| make check |