File tree 1 file changed +29
-0
lines changed
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ # This is a basic workflow to help you get started with Actions
2
+
3
+ name : Build and Run Integration Tests on Azure DevTest Labs
4
+
5
+ # Controls when the action will run.
6
+ on :
7
+ # Triggers the workflow on push or pull request events but only for the main branch
8
+ push :
9
+ branches :
10
+ - main
11
+ - feature/*
12
+ pull_request :
13
+ branches :
14
+ - main
15
+ # Allows you to run this workflow manually from the Actions tab
16
+ workflow_dispatch :
17
+
18
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
19
+ jobs :
20
+ # This workflow contains a single job called "build"
21
+ build-and-integration-test :
22
+ name : Build and run tests on Azure DevTest Labs
23
+ # The type of runner that the job will run on
24
+ runs-on : ubuntu-latest
25
+
26
+ # Steps represent a sequence of tasks that will be executed as part of the job
27
+ steps :
28
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
29
+ - uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments