Skip to content

Bump xunit from 2.9.0 to 2.9.1 #484

Bump xunit from 2.9.0 to 2.9.1

Bump xunit from 2.9.0 to 2.9.1 #484

Workflow file for this run

name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
- name: Clean
shell: bash
run: |
dotnet clean --configuration Release
dotnet nuget locals all --clear
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: CodeCov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: dotnet-tests-report
uses: zyborg/[email protected]
with:
project_path: Tests
report_name: tests
report_title: Tests
github_token: ${{ secrets.GITHUB_TOKEN }}
# - name: Coveralls
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}