Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

add support for fsspec/upath in filecache backend #206

add support for fsspec/upath in filecache backend

add support for fsspec/upath in filecache backend #206

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pip install --upgrade --pre hatch
# run linter only on 1 py version
- if: matrix.python-version == '3.11'
name: Lint
run: hatch run dev:lint
- name: Run tests
run: hatch run dev:test
- name: Upload coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
fail_ci_if_error: true