diff --git a/.github/workflows/azure-webapps-dotnet-core.yml b/.github/workflows/azure-webapps-dotnet-core.yml index 286b9e85..470dc4c8 100644 --- a/.github/workflows/azure-webapps-dotnet-core.yml +++ b/.github/workflows/azure-webapps-dotnet-core.yml @@ -74,31 +74,31 @@ jobs: name: .net-app path: ${{env.DOTNET_ROOT}}/myapp - test: - needs: build - runs-on: ubuntu-latest - environment: STAGING + # test: + # needs: build + # runs-on: ubuntu-latest + # environment: STAGING - steps: - - name: Checkout code - uses: actions/checkout@v3 + # steps: + # - name: Checkout code + # uses: actions/checkout@v3 - - name: Set up .NET Core - uses: actions/setup-dotnet@v2 - with: - dotnet-version: ${{ env.DOTNET_VERSION }} + # - name: Set up .NET Core + # uses: actions/setup-dotnet@v2 + # with: + # dotnet-version: ${{ env.DOTNET_VERSION }} - - name: Run Unit Tests - run: dotnet test ${{ env.UNIT_TESTS_PROJ }} --configuration Release + # - name: Run Unit Tests + # run: dotnet test ${{ env.UNIT_TESTS_PROJ }} --configuration Release - - name: Run Integration Tests - run: dotnet test ${{ env.INTEGRATION_TESTS_PROJ }} --configuration Release + # - name: Run Integration Tests + # run: dotnet test ${{ env.INTEGRATION_TESTS_PROJ }} --configuration Release deploy: permissions: contents: none runs-on: ubuntu-latest - needs: test + needs: build environment: name: STAGING url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}