Update CI workflows and Node.js test scripts #12
Workflow file for this run
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
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
| name: Python package | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'python/**' | |
| - .github/workflows/python.yml | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'python/**' | |
| - .github/workflows/python.yml | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [ | |
| '3.10', | |
| '3.11', | |
| '3.12', | |
| '3.13', | |
| '3.14', | |
| ] | |
| 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 black tox tox-gh | |
| cd python && pip install -r requirements.txt | |
| - name: Run tests | |
| run: cd python && tox | |
| env: | |
| TOX_GH_MAJOR_MINOR: ${{ matrix.python-version }} | |
| - name: Check formatting | |
| run: cd python && black --check . |