Skip to content

Upgrade dotnet 8

Upgrade dotnet 8 #160

Workflow file for this run

name: WeSay CI workflow
on:
pull_request:
branches: [ develop ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Run the unit tests
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build
- name: Test
# space after -- before RunConfig is required
run: dotnet test --logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" -- RunConfiguration.CollectSourceInformation=true