Files
spring-net/build-support/nuke-build/Build.GitHubActions.cs
Marko Lahma ca2bf1e889 Add GitHub Actions configuration (#201)
* new build system based on NUKE build
* support test running on Linux
2021-08-02 17:54:41 +03:00

8 lines
135 B
C#

using Nuke.Common;
public partial class Build
{
Target Ci => _ => _
.DependsOn(Compile, Test, Pack)
.Executes();
}