Skip to content

Commit

Permalink
Update unit-tests.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
JBris authored Feb 8, 2024
1 parent c63fd0b commit 5f20c48
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ on:
workflow_dispatch: {}

permissions:
actions: write
contents: write

contents: read
actions: read
checks: write

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -35,12 +36,12 @@ jobs:

- name: run
run: |
dotnet test --test-adapter-path:. --logger:"junit;LogFilePath=/tmp/unit_results.xml"
dotnet test --test-adapter-path:. --logger:"junit;LogFilePath=unit_results.xml"
- name: Test Report
uses: dorny/test-reporter@v1
if: success()
with:
name: Unit Tests
path: /tmp/unit_results.xml
reporter: java-junit
path: unit_results.xml
reporter: java-junit

0 comments on commit 5f20c48

Please sign in to comment.