Skip to content

Store Dependencies as parquet file #1042

Store Dependencies as parquet file

Store Dependencies as parquet file #1042

Workflow file for this run

name: Test
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macOS-latest, windows-latest ]
python-version: [ '3.10' ]
include:
- os: ubuntu-latest
python-version: '3.8'
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
if: matrix.os == 'ubuntu-latest'
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# TESTS
- name: Ubuntu - install ffmpeg/mediainfo
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends --yes ffmpeg mediainfo
if: matrix.os == 'ubuntu-latest'
- name: OSX - install ffmpeg/mediainfo
run: brew install ffmpeg mediainfo
if: matrix.os == 'macOS-latest'
- name: Windows - install ffmpeg/mediainfo
run: choco install ffmpeg mediainfo-cli
if: matrix.os == 'windows-latest'
- 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'