chore(deps): update dependency xunit.runner.visualstudio to v3 #4
Workflow file for this run
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 Win | |
on: | |
pull_request: | |
branches: | |
- "main" | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
build-win: | |
name: Build, Test & Pack | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: dotnet build -c Release -p:ContinuousIntegrationBuild=true | |
- name: Run tests | |
run: dotnet test --no-build -c Release | |
- name: Set Dev version | |
if: github.ref == 'refs/heads/main' | |
shell: bash | |
run: | | |
version="$(git describe --long --tags | sed 's/^v//;0,/-/s//./')" | |
if [ -z "${version}" ]; then | |
version="0.0.0.$(git rev-list --count HEAD)-g$(git rev-parse --short HEAD)" | |
fi | |
echo "VERSION=${version}" >> $GITHUB_ENV | |
- name: Set Release version | |
if: startsWith(github.ref, 'refs/tags/v') | |
shell: bash | |
run: echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV | |
- name: Pack NuGet artifacts | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') | |
run: dotnet pack --no-build -c Release -p:PackageVersion="${{ env.VERSION }}" | |
- name: Upload artifacts | |
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nupkgs | |
path: src/**/*nupkg |