Skip to content

Update ci

Update ci #159

Workflow file for this run

name: Pipeline
on: [push, pull_request]
jobs:
tests:
strategy:
matrix:
blender: [latest, '3.6', '3.3']
os: [ubuntu-latest, macos-latest, window-latest]
pyversion: ['3.8', '3.10']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.pyversion }}
- uses: Moguri/setup-blender@b856971137e9cbd32ee49f9f20ca3f1637896c44
with:
blender-version: ${{ matrix.blender }}
- name: Run Tests
run: |
python -m pip install -e .[test]
python -m pytest
build_publish:
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Build package
run: |
python -m pip install --upgrade build
python -m build
- name: Publish package
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}