-
Notifications
You must be signed in to change notification settings - Fork 11
43 lines (35 loc) · 916 Bytes
/
ci.yml
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
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@v3
- name: Install FFmpeg and FFprobe
uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg
- name: Install Conda environment
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Conda info
shell: bash -l {0}
run: |
conda info -a
conda list
- name: Install musicalgestures
shell: bash -l {0}
run: python -m pip install musicalgestures