mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 03:05:00 +00:00

# Context: USER: we do need to install universal ctags on windows too ASSISTANT: To install universal ctags on Windows, we need to modify the `windows-tests.yml` file. However, universal ctags is not available in the standard repositories used by GitHub Actions' Windows environment. We can use Chocolatey, a package manager for Windows, to install universal ctags. Here are the changes: ```yaml .github/workflows/windows-tests.yml <<<<<<< ORIGINAL - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt ======= - name: Install universal ctags run: | choco install universal-ctags - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt >>>>>>> UPDATED ``` This adds a new step to the workflow to install universal ctags using Chocolatey before installing the Python dependencies.
38 lines
764 B
YAML
38 lines
764 B
YAML
name: Windows Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
|
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install universal ctags
|
|
run: |
|
|
choco install universal-ctags
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
|
|
- name: Run tests
|
|
run: |
|
|
python -m unittest discover -s tests
|