diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d97568e..854af96 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,10 +10,9 @@ jobs: test: strategy: matrix: - #os: [ubuntu-latest, windows-latest] - #python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] - os: ["ubuntu-latest"] - python-version: ["3.13"] + os: ["ubuntu-latest", "windows-latest"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + runs-on: ${{ matrix.os }} steps: @@ -30,7 +29,7 @@ jobs: python -m pip install --upgrade pip pip install --upgrade poetry - - name: Install dependencies with Poetry and extras + - name: Install dependencies with Poetry and StreamSnapper extras run: poetry install --extras "all" - name: Run tests