update stsci logo path #26
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/[email protected] | |
| 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: true | |
| 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 | |
| secrets: | |
| CASJOBS_USERID: ${{ secrets.CASJOBS_USERID }} | |
| CASJOBS_PW: ${{ secrets.CASJOBS_PW }} | |