File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will build a .NET project
2
+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3
+
4
+ name : Run tests
5
+
6
+ on :
7
+ push :
8
+ branches : [ "main" ]
9
+ pull_request :
10
+ branches : [ "main" ]
11
+
12
+ jobs :
13
+ buildnet9 :
14
+ runs-on : ubuntu-latest
15
+ defaults :
16
+ run :
17
+ shell : bash
18
+ working-directory : ./tests
19
+
20
+ steps :
21
+ - uses : actions/checkout@v4
22
+ - name : Setup .NET
23
+ uses : actions/setup-dotnet@v4
24
+ with :
25
+ dotnet-version : 9.x
26
+ - name : Test
27
+ run : dotnet test --verbosity normal
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
-
2
+
3
3
<PropertyGroup >
4
- <TargetFramework > net9.0</TargetFramework >
4
+ <TargetFrameworks >net8.0; net9.0</TargetFrameworks >
5
5
<LangVersion >latest</LangVersion >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
<Nullable >enable</Nullable >
You can’t perform that action at this time.
0 commit comments