File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Run all tests
2
+ on : [push]
3
+ jobs :
4
+ build :
5
+ name : test with ${{ matrix.ij_product }}
6
+ runs-on : ubuntu-24.04
7
+ continue-on-error : ${{ matrix.experimental }}
8
+ strategy :
9
+ fail-fast : false
10
+ matrix :
11
+ ij_product : ['intellij-2024.3', 'intellij-2025.1']
12
+ experimental : [false]
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ - name : bazel cache
16
+ uses : actions/cache@v4
17
+ with :
18
+ path : ~/.bazel-repository-cache
19
+ key : ${{ github.ref }}
20
+ restore-keys : refs/heads/master
21
+ - name : bazel test
22
+ continue-on-error : ${{ matrix.experimental }}
23
+ run : >
24
+ bazel test //:ijwb_ce_tests
25
+ --repository_cache=~/.bazel-repository-cache
26
+ --define=ij_product=${{ matrix.ij_product }}
27
+ --keep_going
28
+ --test_output=errors
You can’t perform that action at this time.
0 commit comments