Skip to content

CI: switch to Github #3

CI: switch to Github

CI: switch to Github #3

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.10' ]
include:
- os: ubuntu-latest
python-version: '3.11'
tasks: tests
- os: ubuntu-latest
python-version: '3.9'
tasks: tests
steps:
- uses: actions/checkout@v3
- name: Cache emodb
uses: actions/cache@v3
with:
path: ~/audb
key: emodb-1.4.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Ubuntu - install libsndfile
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends --yes libsndfile1 ffmpeg sox libavcodec-extra
if: matrix.os == 'ubuntu-latest'
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# TESTS
- name: Install tests requirements
run: pip install -r tests/requirements.txt
- name: Test with pytest
run: python -m pytest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
if: matrix.os == 'ubuntu-latest'