Skip to content

PROPFIND and glob fix #18

PROPFIND and glob fix

PROPFIND and glob fix #18

Workflow file for this run

name: Python testing
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python3 -m pip install '.[testing]'
- name: Test with pytest
run: pytest