Skip to content

Release v14.8.3

Release v14.8.3 #78

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
---
name: Python package
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install System dependencies
run: |
sudo apt-get update -qq
sudo apt-get install -qq cmake ffmpeg screen
sudo apt-get install -qq liblzma-dev libxml2-dev libxslt-dev libyaml-dev libz-dev
sudo apt-get install -qq libcairo2 libcairo2-dev libexiv2-dev libgexiv2-dev libgirepository1.0-dev
- name: Install Python dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install -U -e .[all,test]
- name: Lint with flake8
run: |
flake8 pytoolbox
- name: Test with pytest
run: |
pytest
- name: Coveralls
uses: coverallsapp/github-action@v2
...