Skip to content

Add histogram

Add histogram #247

Workflow file for this run

name: package
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
include:
- python: 3.8
torch: 1.11.0
torchaudio: 0.11.0
- python: 3.11
torch: 2.2.1
torchaudio: 2.2.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