This repository was archived by the owner on Apr 8, 2026. It is now read-only.
CompatHelper: bump compat for CoordRefSystems to 0.19, (keep existing compat) #610
Workflow file for this run
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: | |
| paths-ignore: | |
| - 'LICENSE.md' | |
| - 'README.md' | |
| - '.github/workflows/CompatHelper.yml' | |
| - '.github/workflows/SpellCheck.yml' | |
| - '.github/workflows/TagBot.yml' | |
| - 'docs/**' | |
| workflow_dispatch: | |
| # Cancel redundant CI tests automatically | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| downgrade_test: | |
| if: "!contains(github.event.head_commit.message, 'skip ci')" | |
| # We could also include the Julia version as in | |
| # name: ${{ matrix.trixi_test }} - ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ github.event_name }} | |
| # to be more specific. However, that requires us updating the required CI tests whenever we update Julia. | |
| name: Downgrade ${{ matrix.os }} - ${{ github.event_name }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - '1.10' | |
| os: | |
| - ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: ${{ matrix.version }} | |
| - run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)' | |
| - uses: julia-actions/cache@v2 | |
| - uses: julia-actions/julia-downgrade-compat@v2 | |
| with: | |
| skip: LinearAlgebra | |
| projects: ., test | |
| - uses: julia-actions/julia-buildpkg@v1 | |
| env: | |
| PYTHON: "" | |
| - name: Run tests without coverage | |
| uses: julia-actions/julia-runtest@v1 | |
| with: | |
| coverage: false | |
| allow_reresolve: false | |
| env: | |
| PYTHON: "" |