Update reproducibility-checker.yml #8
This file contains 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
name: Reproducibility Checker | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
check-reproducibility-of-all-notebooks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- uses: ./.github/actions/setupconda | |
- name: Install packages for the checker script | |
run: conda install nbformat | |
- name: Run Python Script | |
run: python ./.github/workflows/reproducibility_checker.py |