File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Build on MacOS
2
+
3
+ name : CI
4
+
5
+ # Controls when the workflow will run
6
+ on :
7
+ # Triggers the workflow on push or pull request
8
+ push :
9
+ pull_request :
10
+
11
+ # Allow from the Actions tab
12
+ workflow_dispatch :
13
+
14
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
15
+ jobs :
16
+ # This workflow contains a single job called "build"
17
+ build :
18
+ # The type of runner that the job will run on
19
+ runs-on : macos-latest
20
+
21
+ # Steps represent a sequence of tasks that will be executed as part of the job
22
+ steps :
23
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
24
+ - uses : actions/checkout@v2
25
+
26
+ # Runs a single command using the runners shell
27
+ - name : Run a one-line script
28
+ run : bash build.sh
29
+
30
+
You can’t perform that action at this time.
0 commit comments