Skip to content

Commit

Permalink
Add cache setting
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Dec 21, 2023
1 parent 875cacd commit c9d0164
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ on:
- default
- full
- downstream
cache:
description: "Use cache"
type: boolean
default: true

schedule:
- cron: "0 14 * * SUN"
Expand Down Expand Up @@ -118,7 +122,7 @@ jobs:
channel-priority: strict
channels: pyviz/label/dev,conda-forge,nodefaults
envs: "-o flakes -o tests -o examples_tests -o tests_ci"
cache: true
cache: ${{ github.event.inputs.cache }}
conda-update: true
id: install
- name: bokeh sampledata
Expand Down Expand Up @@ -167,7 +171,7 @@ jobs:
python-version: ${{ matrix.python-version }}
channels: pyviz/label/dev,bokeh,conda-forge,nodefaults
envs: "-o recommended -o tests -o build -o tests_ci"
cache: true
cache: ${{ github.event.inputs.cache }}
playwright: true
id: install
- name: doit test_ui
Expand Down Expand Up @@ -206,7 +210,7 @@ jobs:
# # channel-priority: strict
# channels: pyviz/label/dev,conda-forge,nodefaults
# envs: "-o tests_core -o tests_ci"
# cache: true
# cache: ${{ github.event.inputs.cache }}
# conda-update: true
# id: install
- uses: actions/checkout@v3
Expand Down

0 comments on commit c9d0164

Please sign in to comment.