Skip to content

[Bugfix] Move observer and g_idx until after module in onloaded (#195) #776

[Bugfix] Move observer and g_idx until after module in onloaded (#195)

[Bugfix] Move observer and g_idx until after module in onloaded (#195) #776

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
python-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/checkout@v3
- name: Set Env
run: |
pip3 install --upgrade pip && pip3 install --upgrade setuptools
pip3 install virtualenv
virtualenv venv
source venv/bin/activate
- name: "⚙️ Install dependencies"
run: pip3 install .[dev,accelerate]
- name: "🔬 Running tests"
run: make test