Skip to content

Bump xunit.runner.visualstudio from 2.8.2 to 3.0.0 in /src #119

Bump xunit.runner.visualstudio from 2.8.2 to 3.0.0 in /src

Bump xunit.runner.visualstudio from 2.8.2 to 3.0.0 in /src #119

Workflow file for this run

on: ["push", "pull_request"]
name: Run Tests
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: ['8.0']
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- id: test
run: |
cd src
dotnet test --collect:"XPlat Code Coverage" -r output
echo "::set-output name=COVERAGE_FILE::$(find output -name '*.xml')"
# @TODO restore when we get tests working in lcov mode
# - name: Publish coverage to Coveralls
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# path-to-lcov: src/${{ steps.test.outputs.COVERAGE_FILE }}