Skip to content

chore: Upgrade pypa/gh-action-pypi-publish digest to 0ab0b79 #527

chore: Upgrade pypa/gh-action-pypi-publish digest to 0ab0b79

chore: Upgrade pypa/gh-action-pypi-publish digest to 0ab0b79 #527

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
container: jrottenberg/ffmpeg:5.1-ubuntu
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
env:
DEBIAN_FRONTEND: noninteractive
TZ: Etc/UTC
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
apt update; apt install -y wget fdkaac php-cli php-intl php-json php-mbstring php-xml
M4B_TOOL_PRE_RELEASE_LINK=$(wget -q -O - https://github.com/sandreas/m4b-tool/releases/tag/latest | grep -o 'M4B_TOOL_DOWNLOAD_LINK=[^ ]*' | head -1 | cut -d '=' -f 2)
wget "${M4B_TOOL_PRE_RELEASE_LINK}" -O /tmp/m4b-tool.tar.gz
tar xzf /tmp/m4b-tool.tar.gz -C /tmp/
mv /tmp/m4b-tool.phar /usr/local/bin/m4b-tool
chmod +x /usr/local/bin/m4b-tool
wget http://archive.ubuntu.com/ubuntu/pool/universe/m/mp4v2/libmp4v2-2_2.0.0~dfsg0-6_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/m/mp4v2/mp4v2-utils_2.0.0~dfsg0-6_amd64.deb
dpkg -i libmp4v2-2_2.0.0~dfsg0-6_amd64.deb
dpkg -i mp4v2-utils_2.0.0~dfsg0-6_amd64.deb
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest