We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 035fee0 commit 876fe80Copy full SHA for 876fe80
.github/workflows/continuous-integration-workflow.yml
@@ -0,0 +1,28 @@
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
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
0 commit comments