Skip to content

Commit

Permalink
try to sign during test
Browse files Browse the repository at this point in the history
  • Loading branch information
ofir-popowski committed Sep 18, 2022
1 parent 0cfa804 commit 2663a89
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ jobs:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: ./mvnw install -DskipTests -Dgpg.skip
- name: Test with Maven
run: ./mvnw test -Dgpg.skip
- name: Install
run: |
echo 'Install on ' ${GITHUB_REF##*/}
./mvnw install -DskipTests -Dgpg.skip
- name: Test
run: |
echo 'Start tests on ' ${GITHUB_REF##*/}
./mvnw test

0 comments on commit 2663a89

Please sign in to comment.