Skip to content

Bump xunit.runner.visualstudio from 3.0.0 to 3.0.1 #203

Bump xunit.runner.visualstudio from 3.0.0 to 3.0.1

Bump xunit.runner.visualstudio from 3.0.0 to 3.0.1 #203

Workflow file for this run

# Copyright (c) Team CharLS.
# SPDX-License-Identifier: BSD-3-Clause
name: Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
name: build-and-test-${{matrix.os}}-${{matrix.configuration}}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
configuration: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c ${{matrix.configuration}}
- name: Test
run: dotnet test --no-build --verbosity normal -c ${{matrix.configuration}}