Skip to content

Commit fca2ad3

Browse files
authored
chore: fix language versions in CI (#863)
1 parent e6d43e3 commit fca2ad3

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/Test.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- main
7-
tags: ["*"]
7+
tags: ['*']
88
pull_request:
99
types: [opened, reopened, synchronize, ready_for_review]
1010
workflow_dispatch:
@@ -25,12 +25,12 @@ jobs:
2525
actions: write
2626
contents: read
2727
strategy:
28-
fail-fast: true # TODO: toggle
28+
fail-fast: true # TODO: toggle
2929
matrix:
3030
version:
31-
- "lts"
32-
- "1"
33-
- "pre"
31+
- '1.10'
32+
- '1.11'
33+
- '1.12'
3434
group:
3535
- Core/Internals
3636
- Back/DifferentiateWith
@@ -58,16 +58,16 @@ jobs:
5858
- ${{ github.event.pull_request.draft }}
5959
exclude:
6060
- skip_lts: true
61-
version: "lts"
61+
version: '1.10'
6262
- skip_pre: true
63-
version: "pre"
64-
- version: "1"
63+
version: '1.12'
64+
- version: '1.11'
6565
group: Back/ChainRules
66-
- version: "pre"
66+
- version: '1.12'
6767
group: Back/Enzyme
68-
- version: "pre"
68+
- version: '1.12'
6969
group: Back/Mooncake
70-
- version: "pre"
70+
- version: '1.12'
7171
group: Back/DifferentiateWith
7272
env:
7373
JULIA_DI_TEST_GROUP: ${{ matrix.group }}
@@ -85,9 +85,9 @@ jobs:
8585
using Pkg;
8686
Pkg.Registry.update();
8787
if ENV["JULIA_DI_PR_DRAFT"] == "true";
88-
Pkg.test("DifferentiationInterface"; coverage=true, julia_args=["-O1"]);
88+
Pkg.test("DifferentiationInterface"; coverage=true, julia_args=["-O1"]);
8989
else;
90-
Pkg.test("DifferentiationInterface"; coverage=true);
90+
Pkg.test("DifferentiationInterface"; coverage=true);
9191
end;'
9292
- uses: julia-actions/julia-processcoverage@v1
9393
with:
@@ -111,9 +111,9 @@ jobs:
111111
fail-fast: true
112112
matrix:
113113
version:
114-
- "lts"
115-
- "1"
116-
- "pre"
114+
- '1.10'
115+
- '1.11'
116+
- '1.12'
117117
group:
118118
- Formalities
119119
- Zero
@@ -125,9 +125,9 @@ jobs:
125125
- ${{ github.event.pull_request.draft }}
126126
exclude:
127127
- skip_lts: true
128-
version: "lts"
128+
version: '1.10'
129129
- skip_pre: true
130-
version: "pre"
130+
version: '1.12'
131131
env:
132132
JULIA_DIT_TEST_GROUP: ${{ matrix.group }}
133133
JULIA_DI_PR_DRAFT: ${{ github.event.pull_request.draft }}
@@ -144,9 +144,9 @@ jobs:
144144
Pkg.Registry.update();
145145
Pkg.develop(path="./DifferentiationInterface");
146146
if ENV["JULIA_DI_PR_DRAFT"] == "true";
147-
Pkg.test("DifferentiationInterfaceTest"; allow_reresolve=false, coverage=true, julia_args=["-O1"]);
147+
Pkg.test("DifferentiationInterfaceTest"; allow_reresolve=false, coverage=true, julia_args=["-O1"]);
148148
else;
149-
Pkg.test("DifferentiationInterfaceTest"; allow_reresolve=false, coverage=true);
149+
Pkg.test("DifferentiationInterfaceTest"; allow_reresolve=false, coverage=true);
150150
end;'
151151
- uses: julia-actions/julia-processcoverage@v1
152152
with:

0 commit comments

Comments
 (0)