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 d2111d3 commit d0dad73Copy full SHA for d0dad73
.github/workflows/test-mixed.yaml
@@ -0,0 +1,25 @@
1
+name: Test Mixed with 3.13
2
+on:
3
+ schedule:
4
+ # at 2:20am on Sundays
5
+ - cron: 20 2 * * 0
6
+ workflow_dispatch:
7
+jobs:
8
+ test-mixed-clusters:
9
+ name: Test mixed clusters
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ erlang_version:
14
+ - '26'
15
+ elixir_version:
16
+ - '1.18'
17
+ metadata_store:
18
+ - mnesia
19
+ uses: ./.github/workflows/test-make-tests.yaml
20
+ with:
21
+ erlang_version: ${{ matrix.erlang_version }}
22
+ elixir_version: ${{ matrix.elixir_version }}
23
+ previous_version: 'tags/v3.13.7'
24
+ metadata_store: ${{ matrix.metadata_store }}
25
+ mixed_clusters: true
0 commit comments