Search⌘ K

Check the GitHub Actions and Test the App Service

Explore how to review your GitHub Actions workflow for CI/CD automation set up by Azure and test your REST API deployment on Azure App Services. Learn to access the app URL, use the automated API documentation, submit requests, and validate responses to ensure a successful deployment.

Check the CI/CD workflow

Once you have successfully connected the app to GitHub, go to your GitHub repository. You should see something similar to the snapshot shown below:

Explanation

  • Step 1: You will see a workflow file that will be added automatically by Azure. This file is used by Azure to configure the CI/CD (Continuous Integration/Continuous Deployment) with GitHub.

    A workflow is defined by a YAML (.yml) file in the /.github/workflows/ path in your repository. This definition ...