Show first entry for duplicated datasets (#129) #70
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
env: | |
python-version: '3.10' | |
strategy: | |
matrix: | |
os: [ 'ubuntu-latest' ] | |
python-version: [ '3.10' ] | |
sphinx: [ 'sphinx==5.3.0', 'sphinx==6.2.1', 'sphinx==7.*' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Ubuntu - install audio + video handling | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends --yes libsndfile1 ffmpeg mediainfo | |
- name: Set up ${{ matrix.sphinx }} | |
run: | | |
python -V | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r docs/requirements.txt | |
pip install "${{ matrix.sphinx }}" | |
- name: Tests | |
run: | | |
python -m sphinx docs/ build/html -b html -D html_theme=alabaster |