Skip to content

refactor: invaas notebook init and main task usage #2

refactor: invaas notebook init and main task usage

refactor: invaas notebook init and main task usage #2

Workflow file for this run

name: Integration
on:
push:
branches-ignore:
- main
jobs:
integration-pipeline:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip" # caching pip dependencies
cache-dependency-path: setup.py
- name: Install pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run format check
run: black --diff --color --check .
- name: Run type check
run: mypy --install-types --non-interactive .