Fix docstring for values for 2-bit encoding #96
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: CI | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
jobs: | |
initial_tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os || 'ubuntu-latest' }} | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- name: Test basics and coverage | |
python: "3.10" | |
toxenv: py310-test-cov | |
- name: Code style checks | |
python: "3.x" | |
toxenv: codestyle | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Python dependencies | |
run: python -m pip install --upgrade tox | |
- name: Run tests | |
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} | |
comprehensive_tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os || 'ubuntu-latest' }} | |
needs: initial_tests | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
# doc build done on readthedocs. | |
# - name: Documentation build | |
# python: 3.8 | |
# toxenv: build_docs | |
# apt_packages: graphviz | |
- name: Test oldest supported version | |
python: "3.8" | |
toxenv: py38-test-oldestdeps | |
- name: Windows | |
os: windows-latest | |
python: "3.11" | |
toxenv: py311-test | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install system dependencies | |
if: matrix.apt_packages | |
run: sudo apt-get install ${{ matrix.apt_packages }} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Python dependencies | |
run: python -m pip install --upgrade tox ${{ matrix.pip_packages }} | |
- name: Run tests | |
run: tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} | |
- name: Upload coverage to codecov | |
if: ${{ contains(matrix.toxenv,'-cov') }} | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml | |
verbose: true |