Skip to content

Update wandb_create_job.yml #2

Update wandb_create_job.yml

Update wandb_create_job.yml #2

name: py
on:
push:
branches:
- main
tags:
- 'jobs/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo content
uses: actions/checkout@v2 # checkout the repository content to github runner.
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.10 #install the python needed
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
pip install wandb
pip wandb login ${{ secrets.WANDB_API_KEY }}
- name: Create WANDB job
run: |
wandb job create --project "${{ secrets.WANDB_PROJECT }}" --entity "${{ secrets.WANDB_ORG }}" --name "gha-${{ github.ref_name }}" git [email protected]:spaceml-org/SDO-FM.git -g launch-testing --entry-point "scripts/test.py"