-
-
Notifications
You must be signed in to change notification settings - Fork 50
52 lines (41 loc) · 1.2 KB
/
test.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
name: test
on:
workflow_dispatch:
push:
branches: [ master, master-boot-3 ]
pull_request:
branches: [ master, master-boot-3 ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 17 ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: zulu
cache: maven
- name: mvn spring-javaformat:validate
run: mvn spring-javaformat:validate
- name: mvn clean install
run: mvn clean install
- name: init
run: cd docker && chmod 751 ./deploy.sh && ./deploy.sh init
- name: Start Base
run: cd docker && ./deploy.sh base
- name: Start Server
run: cd docker && ./deploy.sh server
- name: Check Server twelvet-gateway
run: |
sleep 30
docker logs --tail 500 twelvet-gateway
- name: Check Server twelvet-auth
run: |
docker logs --tail 500 twelvet-auth
- name: Check Server twelvet-server-system
run: |
docker logs --tail 500 twelvet-server-system