File tree Expand file tree Collapse file tree 4 files changed +33
-0
lines changed
Expand file tree Collapse file tree 4 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name : build
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ test :
11+ runs-on : ubuntu-latest
12+ name : Run tests suite
13+
14+ steps :
15+ - uses : actions/checkout@v2
16+ with :
17+ # We need the full history for gitCreated/gitLastUpdated to works as expected
18+ fetch-depth : 0
19+
20+ - name : Setup .NET
21+ uses : actions/setup-dotnet@v1
22+
23+ - name : Tests
24+ run : ./build.sh test
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ type TestCommand() =
2222 interface ICommandLimiter< TestSettings>
2323
2424 override __.Execute ( context , settings ) =
25+ printfn " CWD: %s " ( Environment.CurrentDirectory)
26+
2527 Command.Run(
2628 " dotnet" ,
2729 CmdLine.empty
Original file line number Diff line number Diff line change 33 <OutputType >Exe</OutputType >
44 <TargetFramework >net8.0</TargetFramework >
55 <ManagePackageVersionsCentrally >False</ManagePackageVersionsCentrally >
6+ <ContinuousIntegrationBuild >false</ContinuousIntegrationBuild >
67 </PropertyGroup >
78 <ItemGroup >
89 <Compile Include =" Workspace.fs" />
Original file line number Diff line number Diff line change 1+ {
2+ "sdk" : {
3+ "version" : " 8.0.204" ,
4+ "rollForward" : " latestMinor"
5+ }
6+ }
You can’t perform that action at this time.
0 commit comments