Skip to content

0. Testing Login to WandB #1

0. Testing Login to WandB

0. Testing Login to WandB #1

name: 0. Testing Login to WandB
on:
workflow_dispatch: # Allows manual execution only
jobs:
login:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
id: setup
with:
python-version: '3.12'
cache: 'pip'
- name: Install WandB
run: pip install wandb
- name: Login to WandB
env:
WANDB_API_KEY: ${{ secrets.WANDB_API_KEY }}
run: wandb login $WANDB_API_KEY