Update compatibility bounds, fixed tolerances and issues in quadratic… #680
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| concurrency: | |
| # Skip intermediate builds: always. | |
| # Cancel intermediate builds: only if it is a pull request build. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| # needed to allow julia-actions/cache to delete old caches that it has created | |
| permissions: | |
| actions: write | |
| contents: read | |
| jobs: | |
| test: | |
| name: Julia ${{ matrix.version }} - ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.version == 'pre' }} | |
| strategy: | |
| matrix: | |
| version: | |
| - 'min' | |
| - 'lts' | |
| - '1' | |
| - 'pre' | |
| os: | |
| - ubuntu-latest | |
| - macOS-latest | |
| - windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| - run: python -m pip install pot | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| - uses: julia-actions/cache@v2 | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-runtest@v1 | |
| with: | |
| coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }} | |
| env: | |
| PYTHON: python | |
| GROUP: OptimalTransport | |
| - uses: julia-actions/julia-processcoverage@v1 | |
| if: matrix.version == '1' && matrix.os == 'ubuntu-latest' | |
| - uses: codecov/codecov-action@v5 | |
| if: matrix.version == '1' && matrix.os == 'ubuntu-latest' | |
| with: | |
| files: lcov.info | |
| - uses: coverallsapp/github-action@v2 | |
| if: matrix.version == '1' && matrix.os == 'ubuntu-latest' | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| file: lcov.info |