File tree Expand file tree Collapse file tree 3 files changed +24
-5
lines changed Expand file tree Collapse file tree 3 files changed +24
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : Java CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+
9
+ steps :
10
+ - uses : actions/checkout@v3
11
+ - name : Set up JDK 17
12
+ uses : actions/setup-java@v3
13
+ with :
14
+ java-version : ' 17'
15
+ distribution : ' adopt'
16
+ cache : maven
17
+ - name : Build with Maven
18
+ run : mvn --batch-mode --update-snapshots verify
Original file line number Diff line number Diff line change 1
- spring.datasource.url =jdbc:h2:mem:testdb
2
- spring.datasource.driverClassName =org.h2.Driver
3
- spring.datasource.username =sa
4
- spring.datasource.password =password
5
- spring.jpa.database-platform =org.hibernate.dialect.H2Dialect
1
+
Original file line number Diff line number Diff line change
1
+ spring.datasource.url =jdbc:h2:mem:testdb
2
+ spring.datasource.driverClassName =org.h2.Driver
3
+ spring.datasource.username =sa
4
+ spring.datasource.password =password
5
+ spring.jpa.database-platform =org.hibernate.dialect.H2Dialect
You can’t perform that action at this time.
0 commit comments