Skip to content

Commit

Permalink
Add github.workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoituron committed Apr 15, 2024
1 parent d07f151 commit dd7d18e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-core-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ env:
jobs:
Build:

runs-on: ubuntu-latest
runs-on: windows-latest

steps:
- name: Checkout source
Expand All @@ -45,16 +45,18 @@ jobs:

- name: Build
run: dotnet build ${{ env.PROJECTS }} --configuration Release
working-directory: ${{ github.workspace }}

Test:

needs: Build

runs-on: ubuntu-latest
runs-on: windows-latest

steps:
- name: Test
run: dotnet test ${{ env.TESTS }} --verbosity normal --configuration Release /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:DebugType=Full
working-directory: ${{ github.workspace }}

- name: Publish Code Coverage Summary
uses: EnricoMi/publish-unit-test-result-action@v2
Expand Down

0 comments on commit dd7d18e

Please sign in to comment.