Reenable option to embed artwork into video files (mp4 only). #822
Workflow file for this run
This file contains 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: tox | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
tox: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Linux specific dependencies for dbus-python | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc python3-dev libdbus-1-dev libglib2.0-dev | |
pkg-config --cflags --libs dbus-1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install tox and poetry | |
run: python -m pip install tox poetry | |
- name: Test with tox | |
run: tox |