Skip to content

Commit 8240af6

Browse files
authored
Merge pull request #85 from sapols/add-pyhc-actions
Add PyHC Actions for PHEP 3 compliance and environment compatibility
2 parents 15ba802 + 418559a commit 8240af6

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/pyhc-actions.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: PyHC Actions
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
schedule:
9+
# Run quarterly: Jan 1, Apr 1, Jul 1, Oct 1 at 3pm UTC (8am Mountain Time)
10+
- cron: '0 15 1 1,4,7,10 *'
11+
workflow_dispatch:
12+
13+
jobs:
14+
phep3-compliance:
15+
name: PHEP 3 Compliance
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Check PHEP 3 Compliance
21+
uses: heliophysicsPy/pyhc-actions/phep3-compliance@v1
22+
23+
pyhc-env-compat:
24+
name: PyHC Environment Compatibility
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v4
28+
29+
- name: Check PyHC Environment Compatibility
30+
uses: heliophysicsPy/pyhc-actions/pyhc-env-compat@v1

0 commit comments

Comments
 (0)