Skip to content

Commit

Permalink
goofing around
Browse files Browse the repository at this point in the history
  • Loading branch information
cklutz committed Oct 11, 2024
1 parent e9bf034 commit 943d1e5
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/dotnet-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:
jobs:
build:
strategy:
# Set to "false" to continue running other jobs in matrix even if one fails
fail-fast: true
matrix:
configuration: [Debug, Release]
dotnet-version: ['8.0.x']
Expand Down Expand Up @@ -59,10 +61,12 @@ jobs:
classfilters: '-*.Linux.*'
title: 'Results for ${{ matrix.tfm }}, ${{ matrix.configuration }}'
tag: '${{ github.run_number }}_${{ github.run_id }}'
if: ${{ matrix.configuration == 'Release' }}

- name: Add coverage report to summary
run: cat $GITHUB_WORKSPACE/coveragereport/SummaryGithub.md >> $GITHUB_STEP_SUMMARY
shell: bash
if: ${{ matrix.configuration == 'Release' }}

- name: Update CodeCoverage badge
run: |
Expand All @@ -71,13 +75,7 @@ jobs:
shell: bash
env:
GH_TOKEN: ${{ secrets.BADGE_GIST_TOKEN }}

# run: >
# gh gist edit 9bd61dea93406219c4985641039c4e2f
# -f code-coverage-windows-${{ matrix.tfm }}-${{ matrix.configuration }}.svg
# ${{ github.workspace }}/coveragereport/badge_combined.svg
# env:
# GH_TOKEN: ${{ secrets.BADGE_GIST_TOKEN }}
if: ${{ github.ref_name == 'master' && matrix.configuration == 'Release' }}

- name: Upload dotnet test results
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 943d1e5

Please sign in to comment.