Removing old simple notebook #46
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
| name: Python package | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '* * 1 * *' # runs CI on 1st day of each month | |
| jobs: | |
| clean-notebook: | |
| name: Ensure Clean Notebook | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - name: Run Ensure Clean Notebook | |
| uses: ResearchSoftwareActions/EnsureCleanNotebooksAction@1.1 | |
| with: | |
| disable-checks: outputs,execution_count | |
| # codacy-analysis-cli: | |
| # name: Codacy Analysis CLI | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout | |
| # uses: actions/checkout@master | |
| # | |
| # - name: Run Codacy Analysis CLI | |
| # uses: codacy/codacy-analysis-cli-action@master |