Skip to content

Commit

Permalink
Created test step
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Bellone committed Jan 15, 2024
1 parent 9570f16 commit b9ae18d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,14 @@ jobs:
run: dotnet build ${{ env.ADR_PROJECT_FILE}} --runtime ${{ env.WINDOWS_RUNTIME }} --configuration ${{ env.CONFIGURATION }} -p:Version=${{ steps.gitversion.outputs.nuGetVersionV2 }}
working-directory: ./src/cli

- name: Test
run: dotnet test --runtime ${{ env.WINDOWS_RUNTIME}} --verbosity normal
working-directory: ./src/tests
run-tests:
name: Run tests
needs: build
runs-on: ubuntu-latest
steps:
- name: Test
run: dotnet test --runtime ${{ env.WINDOWS_RUNTIME}} --verbosity normal
working-directory: ./tests

# publish_windows:
# name: Publish Windows package
Expand Down

0 comments on commit b9ae18d

Please sign in to comment.