PGrabinski is testing Test Dataset Download Script📁 #109
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: Download test dataset | |
run-name: ${{ github.actor }} is testing Test Dataset Download Script📁 | |
on: [push] | |
jobs: | |
test-download-dataset: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Poetry | |
run: curl -sSL https://install.python-poetry.org | python3 - | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tests/data/test_download.py | |
run: | | |
poetry run wandb login ${{ secrets.WANDB_API_KEY }} | |
poetry run python src/tests/data/test_download.py |