Commit 67db7c8 1 parent a6f977b commit 67db7c8 Copy full SHA for 67db7c8
File tree 5 files changed +34
-4
lines changed
5 files changed +34
-4
lines changed Original file line number Diff line number Diff line change 21
21
22
22
# Steps represent a sequence of tasks that will be executed as part of the job
23
23
steps :
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v3
25
25
26
26
- name : tap the repo
27
27
run : brew tap danieljprice/all
Original file line number Diff line number Diff line change 21
21
22
22
# Steps represent a sequence of tasks that will be executed as part of the job
23
23
steps :
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v3
25
25
26
26
- name : tap the repo
27
27
run : brew tap danieljprice/all
Original file line number Diff line number Diff line change 21
21
22
22
# Steps represent a sequence of tasks that will be executed as part of the job
23
23
steps :
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v3
25
25
26
26
- name : tap the repo
27
27
run : brew tap danieljprice/all
Original file line number Diff line number Diff line change
1
+ name : sphmoments
2
+
3
+ # Controls when the action will run. Triggers the workflow on push or pull request
4
+ # events but only for the master branch
5
+ on :
6
+ push :
7
+ paths :
8
+ - ' sphmoments.rb'
9
+ branches : [ master ]
10
+ pull_request :
11
+ paths :
12
+ - ' sphmoments.rb'
13
+ branches : [ master ]
14
+
15
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
16
+ jobs :
17
+ # This workflow contains a single job called "build"
18
+ install :
19
+ # The type of runner that the job will run on
20
+ runs-on : macos-latest
21
+
22
+ # Steps represent a sequence of tasks that will be executed as part of the job
23
+ steps :
24
+ - uses : actions/checkout@v3
25
+
26
+ - name : tap the repo
27
+ run : brew tap danieljprice/all
28
+
29
+ - name : install sphmoments with homebrew
30
+ run : brew install sphmoments
Original file line number Diff line number Diff line change 21
21
22
22
# Steps represent a sequence of tasks that will be executed as part of the job
23
23
steps :
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v3
25
25
26
26
- name : tap the repo
27
27
run : brew tap danieljprice/all
You can’t perform that action at this time.
0 commit comments