File tree Expand file tree Collapse file tree 4 files changed +31
-48
lines changed Expand file tree Collapse file tree 4 files changed +31
-48
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on : [push, pull_request]
3
+ jobs :
4
+ build :
5
+ name : Build and Test (${{ matrix.os }} / OpenJDK ${{ matrix.jdk }})
6
+ strategy :
7
+ fail-fast : true
8
+ matrix :
9
+ jdk : ['8', '11']
10
+ os : [ubuntu-latest]
11
+ runs-on : ${{ matrix.os }}
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - name : Set up JDK ${{ matrix.jdk }}
15
+ uses : actions/setup-java@v1
16
+ with :
17
+ java-version : ${{ matrix.jdk }}
18
+ - name : Cache Maven packages
19
+ uses : actions/cache@v2
20
+ with :
21
+ path : ~/.m2
22
+ key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
23
+ restore-keys : ${{ runner.os }}-m2
24
+ - name : Maven Build
25
+ run : mvn clean package -DskipTests
26
+ - name : Test
27
+ env :
28
+ CYPRESS_RECORD_KEY : ${{ secrets.CYPRESS_RECORD_KEY }}
29
+ run : mvn verify
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# eXist-db Documentation
2
- [ ![ Build Status] ( https://travis-ci .com/eXist-db/documentation. svg?branch=master )] ( https://travis-ci .com/eXist-db/documentation )
2
+ [ ![ Build Status] ( https://github .com/eXist-db/documentation/actions/workflows/ci.yml/badge. svg?branch=master )] ( https://github .com/eXist-db/documentation/actions/workflows/ci.yml )
3
3
[ ![ Docbook version] ( https://img.shields.io/badge/docbook-5.1-19a5a4.svg )] ( http://docbook.org/xml/5.1/ )
4
4
[ ![ eXist-db version] ( https://img.shields.io/badge/eXist_db-5.2.0-blue.svg )] ( http://www.exist-db.org/exist/apps/homepage/index.html )
5
5
Original file line number Diff line number Diff line change 9
9
"screenshotsFolder" : " src/test/cypress/screenshots" ,
10
10
"supportFile" : " src/test/cypress/support/index.js" ,
11
11
"videosFolder" : " src/test/cypress/videos" ,
12
- "projectId" : " h8zx19 "
12
+ "projectId" : " wgr8uu "
13
13
}
You can’t perform that action at this time.
0 commit comments