Skip to content

Bump xunit.runner.visualstudio from 2.5.6 to 2.5.8 #21

Bump xunit.runner.visualstudio from 2.5.6 to 2.5.8

Bump xunit.runner.visualstudio from 2.5.6 to 2.5.8 #21

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- 'main'
paths-ignore:
- '**/readme.md'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --logger GitHubActions
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}