Skip to content

Commit

Permalink
add tests step
Browse files Browse the repository at this point in the history
  • Loading branch information
artemious7 committed Oct 22, 2024
1 parent e91c52a commit fbdc9c1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/provision-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@ jobs:
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}

- name: Build
run: dotnet build "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }}

- name: Test
run: dotnet test --no-build "${{ env.WORKING_DIRECTORY }}"

- name: Publish
run: dotnet publish "${{ env.WORKING_DIRECTORY }}/${{ env.FUNC_PROJECT }}" --configuration ${{ env.CONFIGURATION }} --output "${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}"

Expand Down

0 comments on commit fbdc9c1

Please sign in to comment.