Skip to content

Add test for windows #16

Add test for windows

Add test for windows #16

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
permissions:
contents: read
jobs:
# test:
# runs-on: ${{ matrix.os }}
#
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest]
# python-version: [ "3.11", "3.12", "3.13" ]
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Install uv
# uses: astral-sh/setup-uv@v3
#
# - name: Set up Python ${{ matrix.python-version }}
# run: uv python install ${{ matrix.python-version }}
#
# - name: Run tests
# run: uv run --python ${{ matrix.python-version }} pytest
test-uv-add:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Run tests
run: |
uv init
uv add django!=5.1
uv add environs[django]