Merge pull request #638 from guillaume-vignal/fix/correlation_plot #22
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: Build & Test | |
| on: push | |
| jobs: | |
| build_test_publish: | |
| name: "Build & Test" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 1 | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install .[all] | |
| - name: Run pre-commit hook | |
| run: pre-commit run --all-files | |
| - name: Test with pytest | |
| run: | | |
| python -m pytest | |
| - name: Build python package | |
| run: | | |
| python -m pip install --upgrade build | |
| python -m build | |
| - name: Deploy to PyPI | |
| if: success() && startsWith(github.ref, 'refs/tags') && matrix.python-version == '3.11' | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_API_TOKEN }} |