10000 Skip the orginid property that was introduced in Max 9 (but will be removed in a next version) · Ableton/maxdevtools@dc97362 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

maxdiff: Skip the orginid property that was introduced in Max 9 #128

maxdiff: Skip the orginid property that was introduced in Max 9

maxdiff: Skip the orginid property that was introduced in Max 9 #128

Workflow file for this run

name: test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install black
run: |
pip install black
- name: Run black (check only)
run: |
black --check .
- name: Run maxdiff tests
run: |
cd maxdiff
python3 tests/test.py
0