diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 96fba44..5011183 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,18 +41,18 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Setup .NET ๐Ÿ“ฆ - uses: actions/setup-dotnet@v4 - with: - dotnet-version: ${{ env.DOTNET_VERSION }} + - name: Setup .NET ๐Ÿ“ฆ + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNET_VERSION }} - - name: Restore dependencies ๐Ÿ“‚ - run: dotnet restore + - name: Restore dependencies ๐Ÿ“‚ + run: dotnet restore - - name: Build ๐Ÿงฑ - run: dotnet build --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore - - - name: Test ๐Ÿงช - run: dotnet test --configuration ${{ env.BUILD_CONFIGURATION }} --no-build --verbosity normal + - name: Build ๐Ÿงฑ + run: dotnet build --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore + + - name: Test ๐Ÿงช + run: dotnet test --configuration ${{ env.BUILD_CONFIGURATION }} --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov