File tree 2 files changed +24
-1
lines changed
2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Integration Tests
2
+
3
+ on :
4
+ push :
5
+
6
+ jobs :
7
+ run-integration-tests :
8
+ name : Integration Tests (H2)
9
+ # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
10
+ runs-on : ubuntu-20.04
11
+ steps :
12
+ - name : Clone source code
13
+ uses :
actions/[email protected] # https://github.com/actions/checkout
14
+ with :
15
+ # Whether to configure the token or SSH key with the local git config. Default: true
16
+ persist-credentials : false
17
+ - name : Install JDK
18
+ uses :
actions/[email protected] # https://github.com/actions/setup-java
19
+ with :
20
+ distribution : ' adopt' # https://github.com/actions/setup-java#supported-distributions
21
+ java-version : ' 8' # https://github.com/actions/setup-java#supported-version-syntax
22
+ cache : ' maven' # https://github.com/actions/setup-java#caching-packages-dependencies
23
+ - name : Run integration tests
24
+ run : ./src/main/scripts/execute-command.sh integration-tests
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ language: java
3
3
4
4
env :
5
5
matrix :
6
- - SPRING_PROFILES_ACTIVE=test
7
6
- SPRING_PROFILES_ACTIVE=travis
8
7
- SPRING_PROFILES_ACTIVE=postgres
9
8
global :
You can’t perform that action at this time.
0 commit comments