update docstring for format_param_value #162
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: Cross-platform consistency | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| run-per-os: | |
| name: Run (${{ matrix.os }} / py${{ matrix.python-version }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e . | |
| # If needed: pip install -r requirements.txt | |
| - name: Run extractor | |
| run: | | |
| python .github/workflows/ci/compute_features.py | |
| - name: Upload artifact (pickle + meta) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ runner.os }}-py${{ matrix.python-version }} | |
| path: ci_out/ | |
| compare: | |
| name: Compare results | |
| needs: run-per-os | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Download artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: artifacts | |
| - name: Install compare deps | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pandas numpy | |
| - name: Compare pickles (soft) | |
| env: | |
| SOFT_COMPARE: "1" | |
| run: python .github/workflows/ci/compare_pickles.py |