-
-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (52 loc) · 1006 Bytes
/
e2e_notable.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: E2E test
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
name: Build
uses: ./.github/workflows/nightly.yml
paper:
name: E2E
needs: build
strategy:
fail-fast: false
matrix:
version:
- 1.21.1
- 1.16.5
- 1.16.3
- 1.13.2
- 1.12.2
- 1.8.9
proxy:
- velocity
- bungeecord
uses: ./.github/workflows/e2e_test.yml
with:
proxy: ${{ matrix.proxy }}
version: ${{ matrix.version }}
paper-folia:
name: E2E w/Folia
needs: build
strategy:
fail-fast: false
matrix:
version:
- 1.20.6
proxy:
- velocity
- bungeecord
server:
- paper
- folia
uses: ./.github/workflows/e2e_test.yml
with:
proxy: ${{ matrix.proxy }}
version: ${{ matrix.version }}
server: ${{ matrix.server }}