chore(deps): update dependency nerdbank.gitversioning to v3.6.141 (#260) #602
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
configuration: Release | |
productNamespacePrefix: "ReactiveMarbles" | |
jobs: | |
build: | |
runs-on: windows-2022 | |
outputs: | |
nbgv: ${{ steps.nbgv.outputs.SemVer2 }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
lfs: true | |
- name: Install .NET 6 / 7 / 8 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
8.0.x | |
- name: NBGV | |
id: nbgv | |
uses: dotnet/nbgv@master | |
with: | |
setAllVars: true | |
- name: NuGet Restore | |
run: dotnet restore | |
working-directory: src | |
- name: Build | |
run: dotnet build --configuration=${{ env.configuration }} --verbosity=minimal --no-restore | |
working-directory: src | |
- name: Run Unit Tests and Generate Coverage | |
uses: glennawatson/[email protected] | |
with: | |
project-files: '**/*Tests*.csproj' | |
no-build: true | |
exclude-filter: '[${{env.productNamespacePrefix}}.*.Tests.*]*' | |
include-filter: '[${{env.productNamespacePrefix}}*]*' | |
output-format: cobertura | |
configuration: ${{ env.configuration }} | |
- name: Pack | |
run: dotnet pack --configuration=${{ env.configuration }} --verbosity=minimal --no-restore | |
working-directory: src | |
- name: Upload Code Coverage | |
uses: codecov/codecov-action@v4 | |
- name: Create NuGet Artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: nuget | |
path: '**/*.nupkg' |