Skip to content

chore(nuget): Bump the testing group with 2 updates #21

chore(nuget): Bump the testing group with 2 updates

chore(nuget): Bump the testing group with 2 updates #21

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build-and-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Restore
run: dotnet restore CallRecordInsights.sln
- name: Build
run: dotnet build CallRecordInsights.sln --no-restore --configuration Release
- name: Test
run: dotnet test CallRecordInsights.sln --no-build --configuration Release --logger trx --results-directory ./test-results
- name: Upload test results
uses: actions/upload-artifact@v7
if: always()
with:
name: test-results
path: ./test-results
retention-days: 30