File tree 4 files changed +33
-0
lines changed
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() =
22
22
interface ICommandLimiter< TestSettings>
23
23
24
24
override __.Execute ( context , settings ) =
25
+ printfn " CWD: %s " ( Environment.CurrentDirectory)
26
+
25
27
Command.Run(
26
28
" dotnet" ,
27
29
CmdLine.empty
Original file line number Diff line number Diff line change 3
3
<OutputType >Exe</OutputType >
4
4
<TargetFramework >net8.0</TargetFramework >
5
5
<ManagePackageVersionsCentrally >False</ManagePackageVersionsCentrally >
6
+ <ContinuousIntegrationBuild >false</ContinuousIntegrationBuild >
6
7
</PropertyGroup >
7
8
<ItemGroup >
8
9
<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