We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b4df94 commit e227067Copy full SHA for e227067
.github/workflows/run-tests.yaml
@@ -6,6 +6,10 @@ on:
6
- master
7
pull_request:
8
9
+permissions:
10
+ checks: write
11
+ pull-requests: write
12
+
13
jobs:
14
test:
15
runs-on: windows-latest
@@ -32,6 +36,9 @@ jobs:
32
36
run: dotnet test src/ParquetViewer.sln --no-build --logger trx
33
37
34
38
- name: Test Report
35
- uses: EnricoMi/publish-unit-test-result-action/windows@v2
39
+ uses: bibipkins/dotnet-test-[email protected]
40
with:
- files: src/ParquetViewer.Tests/TestResults/*.trx
41
+ github-token: ${{ secrets.GITHUB_TOKEN }}
42
+ comment-title: 'Unit Test Results'
43
+ results-path: ./src/ParquetViewer.Tests/TestResults/*.trx
44
0 commit comments