Skip to content

Merge pull request #226 from clickviewapp/dependabot/nuget/Microsoft.… #472

Merge pull request #226 from clickviewapp/dependabot/nuget/Microsoft.…

Merge pull request #226 from clickviewapp/dependabot/nuget/Microsoft.… #472

Workflow file for this run

name: Build and Test
on:
push:
#paths-ignore:
#- ".github/workflows/**"
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Checkout
uses: actions/checkout@v4
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --logger trx --results-directory ./test-results/
- name: Upload test results
uses: actions/upload-artifact@v4
with:
name: Test Results
path: ./test-results/
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}