Skip to content

Create common entrypoint. #454

Create common entrypoint.

Create common entrypoint. #454

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Install trainer
run: pip install -e .
- name: Type check
run: make type
- name: Unit tests
run: make test