forked from Aider-AI/aider
-
Notifications
You must be signed in to change notification settings - Fork 38
57 lines (50 loc) · 1.42 KB
/
windows-tests.yml
File metadata and controls
57 lines (50 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Windows Python Tests
on:
push:
paths-ignore:
- 'cecli/website/**'
- 'README.md'
- 'HISTORY.md'
- '.github/workflows/*'
- '!.github/workflows/windows-tests.yml'
branches:
- main
pull_request:
paths-ignore:
- 'cecli/website/**'
- 'README.md'
- 'HISTORY.md'
- '.github/workflows/*'
- '!.github/workflows/windows-tests.yml'
branches:
- main
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10"]
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
uv pip install --system pytest pytest-asyncio pytest-mock -r requirements/requirements.in -r requirements/requirements-help.in -r requirements/requirements-playwright.in '.[help,playwright]'
- name: Configure Git for tests
run: |
git config --global user.name "Test User"
git config --global user.email "test@example.com"
git config --global init.defaultBranch main
- name: Run tests
run: |
pytest
env:
CECLI_TUI: "false"