Skip to content

Bump xunit from 2.9.1 to 2.9.2 #120

Bump xunit from 2.9.1 to 2.9.2

Bump xunit from 2.9.1 to 2.9.2 #120

Workflow file for this run

name: Codecov
on:
workflow_dispatch:
push:
paths-ignore:
- '**/*'
- '!.github/workflows/codecov.yml'
- '!src/**/*.csproj'
- '!src/**/*.cs'
branches:
- '*'
pull_request:
paths-ignore:
- '**/*'
- '!.github/workflows/codecov.yml'
- '!src/**/*.csproj'
- '!src/**/*.cs'
branches:
- '*'
jobs:
build:
name: 👌 Verify build
runs-on: windows-latest
steps:
- name: 🛒 Checkout repository
uses: actions/checkout@v4
- name: 🧪 Test
run: dotnet test src/OasReader.Tests/OasReader.Tests.csproj -c Release --collect "Code coverage" -p:UseSourceLink=true
- name: 🗳️ Upload
uses: actions/upload-artifact@v4
with:
name: Packages
path: |
**/*.nupkg
README.md
- name: Convert Code Coverage
working-directory: src
continue-on-error: true
shell: pwsh
run: |
dotnet tool update dotnet-coverageconverter --global
dotnet-coverageconverter --CoverageFilesFolder . --ProcessAllFiles
Get-ChildItem '*.coveragexml' -Recurse | Select-Object -First 1 | Copy-Item -Path { $_.FullName } -Destination ./coverage.xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
directory: src
file: coverage.xml
flags: unittests
fail_ci_if_error: false
verbose: true