diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index 0c72c3a27..e3014a67c 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -43,7 +43,7 @@ jobs: run: julia --project=${{ matrix.pkg.dir}}/docs/ -e ' using Pkg; Pkg.Registry.update(); - Pkg.add(url="https://github.com/gdalle/SparseMatrixColorings.jl", rev="gd/revamp"); + Pkg.add(url="https://github.com/gdalle/SparseMatrixColorings.jl", rev="main"); if "${{ matrix.pkg.name}}" == "DifferentiationInterface"; Pkg.develop(PackageSpec(path="./DifferentiationInterface")); else; diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index d7e6d2d12..37f6c4b33 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -108,7 +108,7 @@ jobs: run: julia --project=./DifferentiationInterface -e ' using Pkg; Pkg.Registry.update(); - Pkg.add(url="https://github.com/gdalle/SparseMatrixColorings.jl", rev="gd/revamp"); + Pkg.add(url="https://github.com/gdalle/SparseMatrixColorings.jl", rev="main"); Pkg.test("DifferentiationInterface"; coverage=true);' - uses: julia-actions/julia-processcoverage@v1 if: ${{ env.SHOULDRUN == 'true' }} diff --git a/DifferentiationInterfaceTest/test/runtests.jl b/DifferentiationInterfaceTest/test/runtests.jl index 5b765fc37..5e1878a9d 100644 --- a/DifferentiationInterfaceTest/test/runtests.jl +++ b/DifferentiationInterfaceTest/test/runtests.jl @@ -5,7 +5,7 @@ using Pkg using SparseConnectivityTracer using Test -Pkg.add(; url="https://github.com/gdalle/SparseMatrixColorings.jl", rev="gd/revamp"); +Pkg.add(; url="https://github.com/gdalle/SparseMatrixColorings.jl", rev="main"); GROUP = get(ENV, "JULIA_DIT_TEST_GROUP", "All")