Skip to content

v4.3.0

v4.3.0 #46

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build package
run: |
python -m pip install --upgrade pip
pip install poetry==1.2.0
poetry --version
poetry build
pip install dist/pixelbin-*.tar.gz
- name: Run test
run: |
coverage run -m pytest tests/pixelbin_test.py
coverage report
coverage html