We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93fdf57 commit db5ed89Copy full SHA for db5ed89
.github/workflows/ci-python.yml
@@ -54,6 +54,22 @@ jobs:
54
env:
55
TOXENV: mypy
56
57
+ unit-tests:
58
+ name: Unit Tests
59
+ needs: build
60
+ uses: ./.github/workflows/bazel.yml
61
+ strategy:
62
+ fail-fast: false
63
+ matrix:
64
+ include:
65
+ - os: ubuntu
66
+ - os: windows
67
+ with:
68
+ name: Unit Tests (${{ matrix.os }})
69
+ os: ${{ matrix.os }}
70
+ cache-key: python-unit-test-${{ matrix.os }}}
71
+ run: bazel test //py:unit
72
+
73
remote-tests:
74
name: Remote Tests
75
needs: build
@@ -79,6 +95,8 @@ jobs:
79
95
include:
80
96
- browser: chrome
81
97
os: ubuntu
98
+ - browser: chrome
99
+ os: windows
82
100
- browser: edge
83
101
84
102
- browser: firefox
0 commit comments