File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-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 : CI
4
+
5
+ env :
6
+ GITHUB_ID : ${{secrets.ID}}
7
+ GITHUB_SECRET : ${{secrets.SECRET}}
8
+ # Controls when the workflow will run
9
+ on :
10
+ # Triggers the workflow on push or pull request events but only for the master branch
11
+ push :
12
+ branches : [ master ]
13
+ pull_request :
14
+ branches : [ master ]
15
+
16
+ # Allows you to run this workflow manually from the Actions tab
17
+ workflow_dispatch :
18
+
19
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
20
+ jobs :
21
+ # This workflow contains a single job called "build"
22
+ build :
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
30
+
31
+ # Runs a single command using the runners shell
32
+ - name : Run a one-line script
33
+ run : echo Hello, world!
34
+
35
+ # Runs a set of commands using the runners shell
36
+ - name : Run a multi-line script
37
+ run : |
38
+ echo Add other actions to build,
39
+ echo test, and deploy your project.
You can’t perform that action at this time.
0 commit comments