Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed Apr 1, 2024
1 parent 4b13654 commit 5f06a69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-indicators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup .NET
id: dotnet-new
uses: actions/setup-dotnet@v4
if: env.SUPPORT_GA
if: env.SUPPORT_GA == 'true'
with:
dotnet-version: ${{ matrix.dotnet-version }}
dotnet-quality: "ga"
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# the remaining steps are only needed from one primary instance

- name: Test other items
if: env.IS_PRIMARY
if: env.IS_PRIMARY == 'true'
run: >
dotnet test tests/other/Tests.Other.csproj
--configuration Release
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Post test summary
uses: bibipkins/[email protected]
if: env.IS_PRIMARY && always()
if: env.IS_PRIMARY == 'true' && always()
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-title: ""
Expand All @@ -93,7 +93,7 @@ jobs:

- name: Publish coverage to Codacy
uses: codacy/codacy-coverage-reporter-action@v1
if: env.IS_PRIMARY
if: env.IS_PRIMARY == 'true'
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./test-indicators/**/coverage.cobertura.xml

0 comments on commit 5f06a69

Please sign in to comment.