File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 41
41
version : ' 1' # TODO: 1
42
42
- uses : julia-actions/cache@v1
43
43
- name : Install dependencies
44
- run : julia --project=${{ matrix.pkg.dir}}/docs/ -e '
44
+ run : julia --project=${{ matrix.pkg.dir}}/docs/ --color=yes - e '
45
45
using Pkg;
46
46
Pkg.Registry.update();
47
47
if "${{ matrix.pkg.name}}" == "DifferentiationInterface";
54
54
env :
55
55
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
56
56
DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
57
- run : julia --project=${{ matrix.pkg.dir}}/docs/ ${{ matrix.pkg.dir}}/docs/make.jl
57
+ run : julia --project=${{ matrix.pkg.dir}}/docs/ --color=yes ${{ matrix.pkg.dir}}/docs/make.jl
Original file line number Diff line number Diff line change 69
69
- uses : julia-actions/cache@v2
70
70
- name : Install dependencies & run tests
71
71
# how to add the local DIT to the DI test env?
72
- run : julia --project=./DifferentiationInterface -e '
72
+ run : julia --project=./DifferentiationInterface --color=yes - e '
73
73
using Pkg;
74
74
Pkg.Registry.update();
75
75
Pkg.test("DifferentiationInterface"; coverage=true);'
@@ -117,7 +117,7 @@ jobs:
117
117
arch : x64
118
118
- uses : julia-actions/cache@v2
119
119
- name : Install dependencies & run tests
120
- run : julia --project=./DifferentiationInterfaceTest -e '
120
+ run : julia --project=./DifferentiationInterfaceTest --color=yes - e '
121
121
using Pkg;
122
122
Pkg.Registry.update();
123
123
Pkg.develop(path="./DifferentiationInterface");
You can’t perform that action at this time.
0 commit comments