-
Notifications
You must be signed in to change notification settings - Fork 11
61 lines (49 loc) · 1.48 KB
/
ci.yml
File metadata and controls
61 lines (49 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8","3.9","3.10"]
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 system dependencies on macOS
if: runner.os == 'macOS'
run: |
brew install ffmpeg
- name: Install system dependencies on Ubuntu
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Install FFmpeg on Windows
if: runner.os == 'Windows'
uses: FedericoCarboni/setup-ffmpeg@v3
id: setup-ffmpeg
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install Python dependencies
run: |
python -m pip install numpy scipy matplotlib opencv-python
- name: Install musicalgestures
run: |
python -m pip install musicalgestures
continue-on-error: false
- name: Test basic import
run: |
python -c "import musicalgestures; print('MGT-python import successful on ${{ matrix.os }} Python ${{ matrix.python-version }}')"