updating NGC4151_FeII_ContinuumFit and Imaging_Sky_Background_Estimation to jdaviz5 #119
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Pull Request workflow for hellouniverse repository | |
| # Copy this file to your repository's .github/workflows/ directory | |
| name: Notebook CI - Pull Request | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'notebooks/**' | |
| - 'requirements.txt' | |
| - 'pyproject.toml' | |
| - '*.yml' | |
| - '*.yaml' | |
| - '*.md' | |
| - '*.html' | |
| - '*.css' | |
| - '*.js' | |
| jobs: | |
| notebook-ci: | |
| uses: spacetelescope/notebook-ci-actions/.github/workflows/notebook-ci-unified.yml@v1 | |
| with: | |
| execution-mode: 'pr' | |
| python-version: '3.11' # Adjust as needed | |
| # conda-environment: 'hstcal' # Uncomment and adjust for custom conda env | |
| # custom-requirements: 'custom-reqs.txt' # Uncomment for custom requirements | |
| enable-validation: false | |
| enable-security: true | |
| enable-execution: true | |
| enable-storage: true # Store outputs to gh-storage on PR | |
| enable-html-build: false # Don't build HTML docs on PR | |
| post-processing-script: './placeholder.sh' | |
| secrets: | |
| CASJOBS_USERID: ${{ secrets.CASJOBS_USERID }} | |
| CASJOBS_PW: ${{ secrets.CASJOBS_PW }} | |