Skip to content

Commit

Permalink
Add scheduled run and fix versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarrous committed Oct 18, 2023
1 parent 8dba960 commit ad14402
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/container-image-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
pull_request:
branches:
- main
workflow_dispatch: # For on demand runs
schedule:
- cron: 0 0 * * * # Scheduled run every day at midnight

jobs:

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
pull_request:
branches:
- main
workflow_dispatch: # For on demand runs
schedule:
- cron: 0 0 * * * # Scheduled run every day at midnight
jobs:
build:

Expand All @@ -16,7 +19,7 @@ jobs:
fail-fast: false
matrix:
platform: [ubuntu-22.04]
python-version: [3.8]
python-version: ["3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
numpy==1.24.4
astropy==5.2.2
sunpy==4.1.7 # not currently needed
astropy==5.3.3
sunpy==5.0.1 # not currently needed
ndcube==2.1.3 # Adding NDCube to support spectra and high-dimensional data in hermes_core data container
flake8==6.0.0 # for code style
black==23.7.0 # for code style
Expand Down

0 comments on commit ad14402

Please sign in to comment.