Skip to content

Commit

Permalink
Merge pull request #2165 from executablebooks/agoose77/maint-enable-w…
Browse files Browse the repository at this point in the history
…orkflow-dispatch-tests

MAINT: enable workflow-dispatch on tests
  • Loading branch information
agoose77 authored Jun 27, 2024
2 parents d5b60aa + 8817e20 commit da82b0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/scheduled_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
schedule:
# Run at the beginning of each day
- cron: '0 0 * * *'

workflow_dispatch:
jobs:

tests-windows:
Expand All @@ -14,7 +14,7 @@ jobs:
matrix:
# Using the default python in the Windows 2022 github actions runner
# ref: https://github.com/actions/virtual-environments/issues/4856
python-version: [3.9]
python-version: [3.10]

steps:
- uses: actions/checkout@v4
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: actions/cache@v4
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('setup.py') }}
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-${{ matrix.python-version }}-pip-
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- uses: actions/cache@v4
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('setup.py') }}
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-${{ matrix.python-version }}-pip-
# Install libmagic to avoid a flaky Fonts error with matplotlib
Expand Down

0 comments on commit da82b0a

Please sign in to comment.