Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.11'
- '1.10'
# - '~1.9.0-0' # including development versions
# - 'nightly'
os:
Expand All @@ -46,16 +46,17 @@ jobs:
version: ${{ matrix.version }}
- run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)'
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-downgrade-compat@v1
- uses: julia-actions/julia-downgrade-compat@v2
with:
skip: LinearAlgebra,Printf,Test,Random
projects: ., test
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: ""
- name: Run tests without coverage
uses: julia-actions/julia-runtest@v1
with:
coverage: false
env:
PYTHON: ""
mode: forcedeps
- name: Run tests
run: |
julia --project=test --color=yes -e '
import Pkg
Pkg.develop(Pkg.PackageSpec(path=pwd()))
Pkg.instantiate()
Pkg.status(; mode = Pkg.PKGMODE_MANIFEST)
include("test/runtests.jl")
'
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Reexport = "1.2.2"
SciMLBase = "2.78"
SimpleUnPack = "1.1"
SpecialFunctions = "2"
StaticArrays = "1.9.7"
StaticArrays = "1.9.8"
TimerOutputs = "0.5.25"
TrixiBase = "0.1.6"
TypedPolynomials = "0.4.1"
Expand Down
4 changes: 2 additions & 2 deletions test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ LinearAlgebra = "1"
Meshes = "0.52.1, 0.53, 0.54, 0.55, 0.56"
OrdinaryDiffEqNonlinearSolve = "1.6"
OrdinaryDiffEqRosenbrock = "1.9"
Plots = "1.25.11"
Plots = "1.38.9"
QuasiMonteCarlo = "0.3.1"
Random = "1"
StaticArrays = "1.9.7"
StaticArrays = "1.9.8"
Test = "1"
TestItemRunner = "1"
TestItems = "1"
Expand Down