Skip to content

Commit

Permalink
ci: Add name for the steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
s2quake committed Jun 15, 2024
1 parent ff35196 commit 7244d0f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ jobs:
- uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 8.0.100
- run: dotnet build --configuration Release
- run: |
- name: Build
run: dotnet build --configuration Release
- name: Test
run: |
dotnet test --configuration Release --no-restore --no-build \
--logger "trx;LogFileName=${{ github.workspace }}/logs/test-results.trx"
- run: echo "PWD=$(pwd)" >> $GITHUB_ENV
Expand Down

0 comments on commit 7244d0f

Please sign in to comment.