Skip to content

Commit 5e8d305

Browse files
committed
expand test versions
1 parent 2c21520 commit 5e8d305

File tree

2 files changed

+31
-29
lines changed

2 files changed

+31
-29
lines changed

.config/dotnet-tools.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
2-
"version": 1,
3-
"isRoot": true,
4-
"tools": {
5-
"paket": {
6-
"version": "7.2.0-alpha003",
7-
"commands": [
8-
"paket"
9-
]
10-
},
11-
"fable": {
12-
"version": "4.3.0",
13-
"commands": [
14-
"fable"
15-
]
16-
},
17-
"fantomas": {
18-
"version": "6.0.0-alpha-010",
19-
"commands": [
20-
"fantomas"
21-
]
22-
},
23-
"femto": {
24-
"version": "0.9.0",
25-
"commands": [
26-
"femto"
27-
]
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"paket": {
6+
"version": "7.2.0-alpha003",
7+
"commands": [
8+
"paket"
9+
]
10+
},
11+
"fable": {
12+
"version": "4.4.0",
13+
"commands": [
14+
"fable"
15+
]
16+
},
17+
"fantomas": {
18+
"version": "6.0.0-alpha-010",
19+
"commands": [
20+
"fantomas"
21+
]
22+
},
23+
"femto": {
24+
"version": "0.19.0",
25+
"commands": [
26+
"femto"
27+
]
28+
}
2829
}
29-
}
3030
}

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
os: [ubuntu-latest, windows-latest, macOS-latest]
48+
node-version: ['18', '20', 'latest' ]
4849
runs-on: ${{ matrix.os }}
4950

5051
steps:
@@ -53,7 +54,7 @@ jobs:
5354
- name: Setup Node.js
5455
uses: actions/setup-node@v3
5556
with:
56-
node-version: '18'
57+
node-version: ${{ matrix.node-version }}
5758

5859
- name: Setup necessary dotnet SDKs
5960
uses: actions/setup-dotnet@v3
@@ -82,6 +83,7 @@ jobs:
8283
fail-fast: false
8384
matrix:
8485
os: [ubuntu-latest, windows-latest, macOS-latest]
86+
python-version: ['3.10', '3.11', '3.12']
8587
runs-on: ${{ matrix.os }}
8688

8789
steps:
@@ -90,7 +92,7 @@ jobs:
9092
- name: Setup Python
9193
uses: actions/setup-python@v4
9294
with:
93-
python-version: '3.10'
95+
python-version: ${{ matrix.python-version }}
9496

9597
- name: Setup necessary dotnet SDKs
9698
uses: actions/setup-dotnet@v3

0 commit comments

Comments
 (0)