Skip to content

Training Workflow

Training Workflow #5

name: Training Workflow
on:
workflow_dispatch:
jobs:
train:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -r ci-requirements.txt
- name: Run training
run: python train.py