docs: align public release metadata on v3 #31
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: Regression tests | |
| on: | |
| push: | |
| branches: [main, v3] | |
| pull_request: | |
| branches: [main, v3] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install "numpy>=1.21" "pandas>=1.4" "scipy>=1.7" "scikit-learn>=1.0" | |
| - name: Run review-fix regression tests | |
| run: python -m unittest discover -s tests -p 'test_review_fixes.py' -v | |
| - name: Whitespace and conflict-marker diff check | |
| run: | | |
| git diff --check HEAD |