V3.1.0 Release #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
checks: write | |
pull-requests: write | |
jobs: | |
test: | |
runs-on: windows-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
.github | |
src | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4.0.1 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Restore dependencies | |
run: dotnet restore src/ParquetViewer.sln | |
- name: Build | |
run: dotnet build src/ParquetViewer.sln --configuration Debug --no-restore | |
- name: Test | |
run: dotnet test src/ParquetViewer.sln --no-build --logger trx | |
- name: Test Report | |
uses: bibipkins/dotnet-test-reporter@v1.4.1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
comment-title: 'Unit Test Results' | |
results-path: ./src/ParquetViewer.Tests/TestResults/*.trx | |