Skip to content

Accept PathLike objects #51

Accept PathLike objects

Accept PathLike objects #51

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- run: pip install flake8
- run: flake8 tests xtarfile
tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: pip install -e .[lz4,zstd]
- run: python setup.py test