File tree 1 file changed +28
-2
lines changed
1 file changed +28
-2
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
- name : Checkout repository
15
15
uses : actions/checkout@v4
16
- with :
17
- fetch-depth : 0
18
16
19
17
- name : Setup environment
20
18
id : setup
32
30
if : steps.cache.outputs.cache-hit != 'true'
33
31
working-directory : ./tests/bokeh
34
32
run : pytest tests/unit || true
33
+ run :
34
+ needs :
35
+ - detect-usage
36
+
37
+ runs-on : ubuntu-latest
38
+ defaults :
39
+ run :
40
+ shell : bash -el {0}
41
+
42
+ steps :
43
+ - name : Checkout repository
44
+ uses : actions/checkout@v4
45
+
46
+ - name : Setup environment
47
+ id : setup
48
+ uses : ./.github/actions/setup-test-env
49
+
50
+ - name : Restore test cache
51
+ id : cache
52
+ uses : actions/cache@v4
53
+ with :
54
+ path : ./.bokeh_fastapi_cache
55
+ key : test-${{ runner.os }}-${{ runner.arch }}|${{ steps.setup.outputs.python-version }}-${{ steps.setup.outputs.bokeh-version }}
56
+ restore-keys : test-${{ runner.os }}-${{ runner.arch }}
57
+
58
+ - name : Run tests
59
+ working-directory : ./tests/bokeh
60
+ run : pytest
You can’t perform that action at this time.
0 commit comments