Skip to content

Support for all the new stuff in Kontakt 8.0 #167

Support for all the new stuff in Kontakt 8.0

Support for all the new stuff in Kontakt 8.0 #167

Workflow file for this run

name: Test compiler with tests.py on ubuntu
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ply
- name: Test with Unittest
run: |
cd compiler
python -m unittest "tests.py"