Skip to content

implement resolve() #78

implement resolve()

implement resolve() #78

Workflow file for this run

name: Test smb-path
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-22.04", "windows-latest"]
python-version: ["3.8", "3.9", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install hatch
run: python -m pip install "click!=8.3.0" hatch
- name: Test
run: hatch run test