Skip to content

Commit d0dad73

Browse files
committed
Run mixed-version tests with 3.13 weekly
1 parent d2111d3 commit d0dad73

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test-mixed.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)