Fix default lib path for mac #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test basic functionality on multiple platforms | |
on: | |
push: | |
branches: [ "experimental_mac_support" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-13] | |
node-version: [12.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install_Deps | |
run: | | |
if [ "${{ matrix.os }}" == "macos-13" ]; then | |
brew install portaudio | |
pip install pydub | |
pip install pyaudio | |
else | |
pip install pydub | |
fi | |
- name: Test | |
run: cd python/test ; python3 verify_marvin.py |