name: CI / Windows on: push: branches: [main] pull_request: branches: [main] workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true permissions: contents: read jobs: cli-smoke: name: CLI smoke - py${{ matrix.python-version }} runs-on: windows-latest timeout-minutes: 30 strategy: fail-fast: false matrix: python-version: ["3.11"] steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 with: python-version: ${{ matrix.python-version }} cache: 'pip' - name: Install package run: | python -m pip install --upgrade pip setuptools wheel pip install -e ".[dev,as]" - name: Run version job run: reme start config=tests/fixtures/config/version-smoke.yaml job=version - name: Run Windows path tests run: | python -m pytest ` tests/unit/test_auto_dream.py::test_scan_day_files_includes_only_markdown_day_files ` tests/unit/test_auto_dream.py::test_dream_extract_matches_posix_catalog_paths ` tests/unit/test_read_with_neighbors.py::test_read_with_neighbors_uses_posix_nested_path ` -v