-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (55 loc) · 1.64 KB
/
spring_ci.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
55
56
57
58
59
60
61
62
63
64
65
name: Spring Boot CI/CD Pipeline
on:
push:
branches:
- main
paths:
- spring/**
pull_request:
paths:
- spring/**
jobs:
test:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: Weather
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping --host 127.0.0.1 --silent" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Cache Maven dependencies
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
working-directory: ./spring
run: mvn clean install -DskipTests
- name: Run mvn tests
working-directory: ./spring
run: mvn test
env:
SPRING_DATASOURCE_URL: jdbc:mysql://localhost:3306/Weather
SPRING_DATASOURCE_USERNAME: root
SPRING_DATASOURCE_PASSWORD: root
- name: Spring format check
working-directory: ./spring
run: mvn formatter:validate
env:
SPRING_DATASOURCE_URL: jdbc:mysql://localhost:3306/Weather
SPRING_DATASOURCE_USERNAME: root
SPRING_DATASOURCE_PASSWORD: root