Skip to content

Update to bpy 4.1.0 and Python 3.11, packaging for installation to pypi is working (WIP) #44

Update to bpy 4.1.0 and Python 3.11, packaging for installation to pypi is working (WIP)

Update to bpy 4.1.0 and Python 3.11, packaging for installation to pypi is working (WIP) #44

Workflow file for this run

name: Lint & Test
on:
pull_request:
branches:
- main
- develop
push:
branches:
- main
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
INFINIGEN_INSTALL_TERRAIN: False
INFINIGEN_INSTALL_CUSTOMGT: False
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint with ruff
run: |
pip install ruff
# stop the build if there are Python syntax errors or undefined names
ruff --output-format=github --select=E9,F63,F7,F82 .
# default set of ruff rules with GitHub Annotations
#ruff --format=github . # to be enabled in a future PR
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install infinigen & dependencies
run: |
pip install .[dev]
- name: Test with pytest
run: |
pytest tests -m ci