Skip to content

Added a check for http:// in _check_fspath #14

Added a check for http:// in _check_fspath

Added a check for http:// in _check_fspath #14

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