diff --git a/.github/workflows/phep3-compliance.yml b/.github/workflows/phep3-compliance.yml new file mode 100644 index 0000000..2e7426a --- /dev/null +++ b/.github/workflows/phep3-compliance.yml @@ -0,0 +1,20 @@ +name: PHEP 3 Compliance + +on: + push: + branches: [master] + pull_request: + branches: [master] + schedule: + # Run quarterly: Jan 1, Apr 1, Jul 1, Oct 1 at 3pm UTC (8am Mountain Time) + - cron: '0 15 1 1,4,7,10 *' + workflow_dispatch: + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Check PHEP 3 Compliance + uses: heliophysicsPy/pyhc-actions/phep3-compliance@v1 diff --git a/.github/workflows/pyhc-environment-compatibility.yml b/.github/workflows/pyhc-environment-compatibility.yml new file mode 100644 index 0000000..e490507 --- /dev/null +++ b/.github/workflows/pyhc-environment-compatibility.yml @@ -0,0 +1,20 @@ +name: PyHC Environment Compatibility + +on: + push: + branches: [master] + pull_request: + branches: [master] + schedule: + # Run quarterly: Jan 1, Apr 1, Jul 1, Oct 1 at 3pm UTC (8am Mountain Time) + - cron: '0 15 1 1,4,7,10 *' + workflow_dispatch: + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Check PyHC Environment Compatibility + uses: heliophysicsPy/pyhc-actions/pyhc-env-compat@v1