-
Notifications
You must be signed in to change notification settings - Fork 14
59 lines (48 loc) · 1.22 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: package
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
include:
- python: 3.9
torch: 2.0.0
torchaudio: 2.0.1
- python: 3.12
torch: 2.5.1
torchaudio: 2.5.1
steps:
- name: Clone
uses: actions/checkout@v4
- name: Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
architecture: x64
- name: Dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -qq -y libsndfile1
- name: Install
run: make PYTHON_VERSION=${{ matrix.python }} TORCH_VERSION=${{ matrix.torch }} TORCHAUDIO_VERSION=${{ matrix.torchaudio }} PLATFORM=cpu venv tool
- name: Check
run: make check
- name: Test
run: make test
- name: Coverage
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true