Create data #28
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: Create data | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.11 | |
| - name: Install dependencies | |
| run: | | |
| pip install jupyter nbconvert | |
| pip install pandas | |
| pip install requests | |
| pip install pyunpack patool | |
| - name: Run notebooks | |
| run: | | |
| jupyter nbconvert --to notebook --execute create_data.ipynb | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| file_pattern: 'data.csv' | |
| commit_message: 'Create data.csv' | |
| skip_dirty_check: false |