Improvements to the polytopal and hybrid methods API #457
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: Downgrade | |
| on: [pull_request, workflow_dispatch] | |
| # Cancel redundant CI tests automatically | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| downgrade: | |
| name: Downgrade ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - '1.10' # Needs to be lowest supported version | |
| os: | |
| - ubuntu-latest | |
| arch: | |
| - x64 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| arch: ${{ matrix.arch }} | |
| - run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)' | |
| - uses: julia-actions/cache@v2 | |
| - uses: julia-actions/julia-downgrade-compat@v2 | |
| with: # As per documentation, we exclude packages within the Julia standard library | |
| skip: LinearAlgebra,SparseArrays,Random,Statistics,Test | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| - uses: julia-actions/julia-runtest@v1 | |
| with: | |
| coverage: false |