Skip to content

Add support for zstd compression algorithm #2

Add support for zstd compression algorithm

Add support for zstd compression algorithm #2

Workflow file for this run

name: test
on:
pull_request:
branches-ignore:
- "release-**"
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['2.7', 3.6', '3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
check-latest: true
- name: Install dependencies
run: |
sudo apt-get install -y zstd
pip install -e .[test]
- name: Test with pytest
run: |
py.test -v -s tests