Unpack integer header data values as unsigned #81
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 40 | |
matrix: | |
python-version: | |
- 3.7 | |
- 3.8 | |
- 3.9 | |
- "3.10" | |
- "3.11" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Dependencies | |
run: | | |
pip install -U pip zstandard setuptools wheel build | |
- name: Test | |
run: | | |
python setup.py test | |
- name: Style | |
if: ${{ matrix.python-version == '3.7' }} | |
run: | | |
pip install -U black==23.1.0 | |
black -t py37 --check . | |
- name: Package | |
run: | | |
python -m build |