Skip to content

Add ServerOptions as arg #31

Add ServerOptions as arg

Add ServerOptions as arg #31

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
platform: [ubuntu-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install SuperCollider
shell: bash
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
sudo apt-get install --yes supercollider
# start jack
jackd --no-realtime -d dummy &
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install --cask supercollider
elif [ "$RUNNER_OS" == "Windows" ]; then
# choco only offers an ancient version of SC.
choco install supercollider
fi
- name: Install tox
run: |
python -m pip install tox tox-gh-actions
- name: Run tests
run: tox