Skip to content

Commit

Permalink
change to .csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hock committed Nov 15, 2024
1 parent 14010de commit e3a9e8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
dotnet-version: 9.0.x

- name: Build
run: find . -name "*.sln" -o -name "*.slnx" | xargs -I {} dotnet build "{}" --configuration ${{ matrix.configuration }}
run: find . -name "*.csproj" | xargs -I {} dotnet build "{}" --configuration ${{ matrix.configuration }}

test:
name: Test ${{ matrix.display-name }}
Expand Down Expand Up @@ -71,5 +71,5 @@ jobs:
id: tests
continue-on-error: true # proceed if tests fail to allow for the report generation in master or next step failure in PR
run: |
find . -name "*.sln" -o -name "*.slnx" | xargs -I {} dotnet test "{}" \
find . -name "*.csproj" | xargs -I {} dotnet test "{}" \
--framework ${{ matrix.framework }} \

0 comments on commit e3a9e8c

Please sign in to comment.