Skip to content

Commit 0891cbc

Browse files
authored
Merge pull request #315 from nilproject/update_workflows
Update workflows
2 parents 32b13d9 + cf1ff2a commit 0891cbc

File tree

3 files changed

+12
-28
lines changed

3 files changed

+12
-28
lines changed

.github/workflows/dotnet.yml

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,10 @@ jobs:
2222
with:
2323
submodules: true
2424

25-
- name: Install .NET Core 3.1
25+
- name: Install .NET Core 10.0
2626
uses: actions/setup-dotnet@v4
2727
with:
28-
dotnet-version: 3.1.x
29-
30-
- name: Install .NET Core 8.0
31-
uses: actions/setup-dotnet@v4
32-
with:
33-
dotnet-version: 8.0.x
34-
35-
- name: Install .NET Core 9.0
36-
uses: actions/setup-dotnet@v4
37-
with:
38-
dotnet-version: 9.0.x
28+
dotnet-version: 10.0.x
3929

4030
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
4131
- name: Setup MSBuild.exe
@@ -63,17 +53,12 @@ jobs:
6353
- name: Run TinyT4
6454
run: |
6555
cd Tests
66-
dotnet run --project ..\Utility\tiny-t4\ --framework net9.0
67-
68-
- name: Test .NET Core 3.1
69-
run: |
70-
cd Tests
71-
dotnet test -c Release -property:TargetFramework=netcoreapp3.1 -property:SignAssembly=false -property:PublicSign=false
56+
dotnet run --project ..\Utility\tiny-t4\ --framework net10.0
7257
73-
- name: Test .NET Core 9.0
58+
- name: Test .NET Core 10.0
7459
run: |
7560
cd Tests
76-
dotnet test -c Release -property:TargetFramework=net9.0 -property:SignAssembly=false -property:PublicSign=false
61+
dotnet test -c Release -property:TargetFramework=net10.0 -property:SignAssembly=false -property:PublicSign=false
7762
7863
- name: Test .NET Framework 4.6.1
7964
run: |

.github/workflows/release.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,22 +66,21 @@ jobs:
6666
with:
6767
fetch-depth: 0
6868
submodules: true
69-
70-
# Install the .NET Core 6.0
71-
- name: Install .NET Core 6.0
72-
uses: actions/setup-dotnet@v1
73-
with:
74-
dotnet-version: 6.0.x
7569

7670
- name: Install .NET Core 8.0
7771
uses: actions/setup-dotnet@v4
7872
with:
7973
dotnet-version: 8.0.x
8074

81-
- name: Install .NET Core 9.0
75+
- name: Install .NET Core 8.0
8276
uses: actions/setup-dotnet@v4
8377
with:
8478
dotnet-version: 9.0.x
79+
80+
- name: Install .NET Core 10.0
81+
uses: actions/setup-dotnet@v4
82+
with:
83+
dotnet-version: 10.0.x
8584

8685
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
8786
- name: Setup MSBuild.exe

Utility/tiny-t4

0 commit comments

Comments
 (0)