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.
We'll cover the following...
We'll cover the following...
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
workflowfile 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
workflowis defined by aYAML(.yml) file in the/.github/workflows/path in your repository. This definition ...