diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff58992..e589610 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ on: push: branches: - master + - 'features/*' pull_request: branches: - master diff --git a/build/Build.cs b/build/Build.cs index 2229c19..52a93a1 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -14,7 +14,7 @@ using static Nuke.Common.Tools.DotNet.DotNetTasks; [CheckBuildProjectConfigurations] [ShutdownDotNetAfterServerBuild] [GitHubActions("ci", GitHubActionsImage.UbuntuLatest, - OnPushBranches = new[] {"master", "features"}, + OnPushBranches = new[] {"master", "features/*"}, OnPullRequestBranches = new[] {"master"}, AutoGenerate = true, InvokedTargets = new[] {nameof(Ci)},