Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cboettig committed Sep 2, 2024
2 parents b4ec80e + 0be15f5 commit be2d625
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ name: Reproducibility Check
jobs:
render:
name: execute notebook
runs-on: ubuntu-latest
runs-on: arc-runner-espm157 # ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11.9'
- name: Install Dependencies
run: pip install -r requirements.txt
- name: test
run: pytest --nbval-lax climate.ipynb
run: |
rm -f github-login.ipynb # exclude login from testing
pytest --nbval-lax *.ipynb
# - name: render
# run: myst build climate.md --pdf

0 comments on commit be2d625

Please sign in to comment.