Skip to content

feat: add support for fuse types #53

feat: add support for fuse types

feat: add support for fuse types #53

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
checks:
uses: ./.github/workflows/checks.yml
tests:
name: Run tests
runs-on: ubuntu-latest
needs: [checks]
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up PDM @ ${{ matrix.python-version }}
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
cache: true
architecture: x64
prerelease: true
enable-pep582: true
env:
PDM_DEPS: "urllib3<2"
- name: Install dependencies
run: pdm install
- name: Unit test using pytest
run: pdm run pytest