mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-16 17:44:59 +00:00

# Context: USER: can you stop this action from running on pushes/merges and make it so that it only runs when manually initiated? ASSISTANT: Sure, to make the GitHub action only run when manually initiated, we need to modify the `.github/workflows/windows-tests.yml` file. We will remove the `push` and `pull_request` triggers and add a `workflow_dispatch` trigger. Here is the change: ```yaml .github/workflows/windows-tests.yml <<<<<<< ORIGINAL name: Windows Tests on: push: branches: - main pull_request: branches: - main ======= name: Windows Tests on: workflow_dispatch: >>>>>>> UPDATED ``` This change will make the workflow only run when manually triggered from the GitHub Actions UI.
33 lines
707 B
YAML
33 lines
707 B
YAML
name: Windows Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
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
|