Skip to content

chore(deps): bump flake8 from 6.1.0 to 7.0.0 #54

chore(deps): bump flake8 from 6.1.0 to 7.0.0

chore(deps): bump flake8 from 6.1.0 to 7.0.0 #54

name: Python package
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install additional Python interpreters
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.7 python3.7-distutils python3.9 python3.9-distutils python3.10 python3.10-distutils
- name: Install ffmpeg
run: sudo apt-get install ffmpeg
- name: Install tox
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run tox
run: python -m tox --skip-missing false