Skip to content

Allowing annotation to work with any GLB (e.g. non objaverse) file and some other minor improvements. #11

Allowing annotation to work with any GLB (e.g. non objaverse) file and some other minor improvements.

Allowing annotation to work with any GLB (e.g. non objaverse) file and some other minor improvements. #11

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python3 -m venv .env
source .env/bin/activate
make install
make install-dev
- name: Unit tests
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
source .env/bin/activate
make test