Skip to content

Commit 67db7c8

Browse files
committed
update to checkout v3; added sphmoments script
1 parent a6f977b commit 67db7c8

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

.github/workflows/denoise.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
- name: tap the repo
2727
run: brew tap danieljprice/all

.github/workflows/giza.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
- name: tap the repo
2727
run: brew tap danieljprice/all

.github/workflows/mcfost.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
- name: tap the repo
2727
run: brew tap danieljprice/all

.github/workflows/sphmoments.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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

.github/workflows/splash.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
- name: tap the repo
2727
run: brew tap danieljprice/all

0 commit comments

Comments
 (0)