Skip to content

Commit

Permalink
Default to true if inputs.cache is not set (#6050)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro authored Dec 22, 2023
1 parent f46e512 commit 62b7f1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
channel-priority: strict
channels: pyviz/label/dev,conda-forge,nodefaults
envs: "-o flakes -o tests -o examples_tests -o tests_ci"
cache: ${{ github.event.inputs.cache }}
cache: ${{ github.event.inputs.cache || github.event.inputs.cache == '' }}
conda-update: true
id: install
- name: bokeh sampledata
Expand Down Expand Up @@ -183,7 +183,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: ${{ github.event.inputs.cache }}
cache: ${{ github.event.inputs.cache || github.event.inputs.cache == '' }}
playwright: true
id: install
- name: doit test_ui
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
# # channel-priority: strict
# channels: pyviz/label/dev,conda-forge,nodefaults
# envs: "-o tests_core -o tests_ci"
# cache: ${{ github.event.inputs.cache }}
# cache: ${{ github.event.inputs.cache || github.event.inputs.cache == '' }}
# conda-update: true
# id: install
- uses: actions/checkout@v3
Expand Down

0 comments on commit 62b7f1e

Please sign in to comment.