Skip to content

Merge branch 'johan/multiple-files' #49

Merge branch 'johan/multiple-files'

Merge branch 'johan/multiple-files' #49

Workflow file for this run

name: tox
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# https://developer.blender.org/docs/release_notes/3.1/python_api/
# https://developer.blender.org/docs/release_notes/4.1/python_api/
#
# NOTE: Should match the gh-actions list in tox.ini
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox