Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed May 6, 2024
1 parent 6371865 commit 092f56c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,14 @@ jobs:
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- name: Dev dependencies (temporary)
run: julia --project=${{ matrix.pkg.dir}}/ -e '
using Pkg;
Pkg.Registry.update();
if "${{ matrix.pkg.name}}" == "DifferentiationInterfaceTest";
Pkg.develop(PackageSpec(path="./DifferentiationInterface"));
end;
Pkg.instantiate();'
- uses: julia-actions/julia-runtest@v1
with:
project: ${{ matrix.pkg.dir }}
Expand Down
5 changes: 3 additions & 2 deletions DifferentiationInterface/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ DifferentiationInterfaceZygoteExt = "Zygote"
ADTypes = "1.0.0"
ChainRulesCore = "1.23.0"
Compat = "3,4"
DifferentiationInterfaceTest = "0.3"
Diffractor = "=0.2.6"
DocStringExtensions = "0.9.3"
Enzyme = "0.11.20,0.12"
Expand All @@ -70,7 +71,7 @@ ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
DifferentiationInterfaceTest = "a82114a7-5aa3-49a8-9643-716bb13727a3"
# DifferentiationInterfaceTest = "a82114a7-5aa3-49a8-9643-716bb13727a3"
Diffractor = "9f5e2b26-1114-432f-b630-d3fe2085c51c"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9"
Expand All @@ -96,7 +97,7 @@ test = [
"ADTypes",
"Aqua",
"DataFrames",
"DifferentiationInterfaceTest",
# "DifferentiationInterfaceTest",
"Documenter",
"JET",
"JuliaFormatter",
Expand Down

0 comments on commit 092f56c

Please sign in to comment.