Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender committed Apr 1, 2024
1 parent fffa38d commit b22d0a1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-indicators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:

- name: Setup .NET
uses: actions/setup-dotnet@v4
if: ${{ env.SUPPORT_GA }}
if: ${{ env.SUPPORT_GA == true }}
with:
dotnet-version: ${{ matrix.dotnet-version }}
dotnet-quality: "ga"

- name: Setup .NET (older)
uses: actions/setup-dotnet@v4
if: ${{ !env.SUPPORT_GA }}
if: ${{ env.SUPPORT_GA == false }}
with:
dotnet-version: ${{ matrix.dotnet-version }}

Expand All @@ -71,7 +71,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 @@ -82,7 +82,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 @@ -92,7 +92,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 b22d0a1

Please sign in to comment.