diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml index bd9a98157..1d7ef129f 100644 --- a/.github/workflows/CompatHelper.yml +++ b/.github/workflows/CompatHelper.yml @@ -20,13 +20,13 @@ jobs: version: '1' arch: ${{ runner.arch }} if: steps.julia_in_path.outcome != 'success' - - name: "Add the General registry via Git" + - name: 'Add the General registry via Git' run: | import Pkg ENV["JULIA_PKG_SERVER"] = "" Pkg.Registry.add("General") shell: julia --color=yes {0} - - name: "Install CompatHelper" + - name: 'Install CompatHelper' run: | import Pkg name = "CompatHelper" @@ -34,10 +34,17 @@ jobs: version = "3" Pkg.add(; name, uuid, version) shell: julia --color=yes {0} - - name: "Run CompatHelper" + - name: 'Run CompatHelper' run: | import CompatHelper - CompatHelper.main(subdirs=["DifferentiationInterface", "DifferentiationInterfaceTest"]) + CompatHelper.main(subdirs=[ + "DifferentiationInterface", + "DifferentiationInterface/test", + "DifferentiationInterface/docs", + "DifferentiationInterfaceTest", + "DifferentiationInterfaceTest/test", + "DifferentiationInterfaceTest/docs", + ]) shell: julia --color=yes {0} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/DifferentiationInterface/test/Project.toml b/DifferentiationInterface/test/Project.toml index 20d7f55af..4120a7c81 100644 --- a/DifferentiationInterface/test/Project.toml +++ b/DifferentiationInterface/test/Project.toml @@ -25,8 +25,8 @@ DataFrames = "1.7.0" Dates = "1" ExplicitImports = "1.10.1" InteractiveUtils = "1" -JET = "0.9,0.10" -JLArrays = "0.2.0" +JET = "0.9,0.10,0.11" +JLArrays = "0.2,0.3" Pkg = "1" Random = "1" StableRNGs = "1.0.1" diff --git a/DifferentiationInterfaceTest/Project.toml b/DifferentiationInterfaceTest/Project.toml index f40e7d571..92cce4174 100644 --- a/DifferentiationInterfaceTest/Project.toml +++ b/DifferentiationInterfaceTest/Project.toml @@ -35,7 +35,12 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" DifferentiationInterfaceTestComponentArraysExt = "ComponentArrays" DifferentiationInterfaceTestFluxExt = ["FiniteDifferences", "Flux", "Functors"] DifferentiationInterfaceTestJLArraysExt = "JLArrays" -DifferentiationInterfaceTestLuxExt = ["ComponentArrays", "ForwardDiff", "Lux", "LuxTestUtils"] +DifferentiationInterfaceTestLuxExt = [ + "ComponentArrays", + "ForwardDiff", + "Lux", + "LuxTestUtils", +] DifferentiationInterfaceTestStaticArraysExt = "StaticArrays" [compat] @@ -50,8 +55,8 @@ FiniteDifferences = "0.12" Flux = "0.16" ForwardDiff = "0.10.36,1" Functors = "0.4, 0.5" -JET = "0.9,0.10" -JLArrays = "0.1, 0.2" +JET = "0.9,0.10,0.11" +JLArrays = "0.1,0.2,0.3" LinearAlgebra = "1" Lux = "1.1.0" LuxTestUtils = "1.3.1, 2"