Skip to content

Bump Microsoft.NET.Test.Sdk from 18.4.0 to 18.5.1 #356

Bump Microsoft.NET.Test.Sdk from 18.4.0 to 18.5.1

Bump Microsoft.NET.Test.Sdk from 18.4.0 to 18.5.1 #356

name: Deploy Feature Branch
on:
pull_request:
types: [opened, synchronize]
branches:
- develop
paths:
- 'src/**'
- 'test/**'
- '**.sln'
- '**.cake'
- '.github/workflows/branch-feature.yml'
- '.github/workflows/step-*.yml'
workflow_dispatch:
jobs:
get-version:
if: startsWith(github.head_ref, 'feature/') || startsWith(github.head_ref, 'copilot/') || github.head_ref == 'master'
uses: ./.github/workflows/step-version.yml
with:
is-pre-release: true
build:
needs: [get-version]
uses: ./.github/workflows/step-build.yml
with:
version: ${{ needs.get-version.outputs.version }}
checkout-ref: ${{ github.head_ref }}
check-markdown:
needs: [get-version]
uses: ./.github/workflows/step-check-markdown.yml
mutation-testing:
needs: [get-version]
uses: ./.github/workflows/step-mutation-testing.yml
with:
comparison: ${{ github.base_ref }}