Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Feb 11, 2025
1 parent 8ecc22d commit 8c04257
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ jobs:

- uses: julia-actions/cache@v2

- name: "Remove Oscar.jl compat"
if: ${{ matrix.oscar-version == 'devel' }}
shell: julia --color=yes {0}
run: |
using TOML
project = TOML.parsefile("Project.toml")
project["compat"]["Oscar"] = "1"
open("Project.toml", "w") do io
TOML.print(io, project)
end
- name: "Install OSCAR dev version"
if: ${{ matrix.oscar-version == 'devel' }}
shell: julia --project=. --color=yes {0}
Expand Down

0 comments on commit 8c04257

Please sign in to comment.