Skip to content

Commit

Permalink
chore: fixing incorrect path in ci config
Browse files Browse the repository at this point in the history
  • Loading branch information
Teodor92 committed Dec 16, 2023
1 parent 3869f69 commit fe2cde1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0.x' # Specify the .NET version here
dotnet-version: '8.0.x'

- name: Restore dependencies
run: dotnet restore
Expand All @@ -33,10 +33,10 @@ jobs:
if: success() || failure()
with:
name: test-results
path: /test/MoreDotNet.Tests/TestResults/*.trx
path: ./test/MoreDotNet.Test/TestResults/*.trx

- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: './test/MoreDotNet.Tests/coverage.net8.0.info'
path-to-lcov: './test/MoreDotNet.Test/coverage.net8.0.info'

0 comments on commit fe2cde1

Please sign in to comment.