Skip to content

An 1-bit increment of one should indicate missing compressed data #17

An 1-bit increment of one should indicate missing compressed data

An 1-bit increment of one should indicate missing compressed data #17

Workflow file for this run

# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 6
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.9"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install --upgrade pip
- if: ${{ matrix.python-version }} == "3.11"
run: pip install ruff && ruff --output-format=github --ignore=E501 --target-version=py37 .
- run: pip install pytest .
- run: pytest