- r improve requirements comments #6
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: Test Mininimum Dependency Versions | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| - "3.14" | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: echo "${{ matrix.python-version }}" > .python-version | |
| - uses: jdx/mise-action@v4 | |
| - run: mise install # retry for network issues | |
| - run: mise pip-install || mise pip-install # retry for network issues | |
| - run: python pin_requirements_to_minimum_acceptable_version.py | |
| - run: ./build_and_test.sh | |
| shell: bash | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@v6 | |
| if: always() | |
| with: | |
| detailed_summary: true |