Skip to content

Commit 0dabffd

Browse files
authored
Use github actions for testing (#597)
For now, this is in addition to travisCI.
1 parent 8fdeb50 commit 0dabffd

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/tests.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: DS3 Java SDK Tests
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Set up JDK
13+
uses: actions/setup-java@v3
14+
with:
15+
distribution: 'temurin'
16+
java-version: '8'
17+
cache: 'gradle'
18+
check-latest: true
19+
- name: Run PR Tests
20+
run: ./gradlew -S clean jar :ds3-sdk:test :ds3-utils:test :ds3-metadata:test

0 commit comments

Comments
 (0)