From 76a7601aee3987ccd4e77e695acb1be4472fbbaf Mon Sep 17 00:00:00 2001 From: Ricardo Rosa Date: Tue, 12 Dec 2023 08:36:56 -0300 Subject: [PATCH] Add downgrade CI for testing lower bounds --- .github/workflows/Downgrade.yml | 29 +++++++++++++++++++++++++++++ Project.toml | 33 ++++++++++++++++++--------------- 2 files changed, 47 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/Downgrade.yml diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml new file mode 100644 index 0000000..01ff8ca --- /dev/null +++ b/.github/workflows/Downgrade.yml @@ -0,0 +1,29 @@ +name: Downgrade +on: + pull_request: + branches: + - master + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1'] + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.version }} + - uses: cjdoris/julia-downgrade-compat-action@v1 +# if: ${{ matrix.version == '1.6' }} + with: + skip: Pkg,TOML + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 \ No newline at end of file diff --git a/Project.toml b/Project.toml index 502f2d0..3b6ed04 100644 --- a/Project.toml +++ b/Project.toml @@ -30,22 +30,25 @@ ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" DiffEqNoiseProcessReverseDiffExt = "ReverseDiff" [compat] -DiffEqBase = "6.11" -Distributions = "0.22, 0.23, 0.24, 0.25" -GPUArraysCore = "0.1" -Optim = "1" -PoissonRandom = "0.4" -QuadGK = "2" -Random123 = "1.2" -RandomNumbers = "1.3" -RecipesBase = "0.7, 0.8, 1.0" -RecursiveArrayTools = "2" -Requires = "1" -ResettableStacks = "0.6, 1.0" -SciMLBase = "1, 2" +DiffEqBase = "6.142" +Distributions = "0.25.104" +GPUArraysCore = "0.1.5" +LinearAlgebra = "1.9" +Markdown = "1.9" +Optim = "1.7" +PoissonRandom = "0.4.4" +QuadGK = "2.9" +Random = "1.9" +Random123 = "1.6" +RandomNumbers = "1.5" +RecipesBase = "1.3.4" +RecursiveArrayTools = "2.38" +Requires = "1.3" +ResettableStacks = "1.0" +SciMLBase = "2.9" StaticArraysCore = "1.4" -Statistics = "1" -julia = "1.6" +Statistics = "1.9" +julia = "1.9" [extras] Cubature = "667455a9-e2ce-5579-9412-b964f529a492"