We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606173e commit f29d94bCopy full SHA for f29d94b
.github/workflows/build.yml
@@ -56,12 +56,15 @@ jobs:
56
restore-keys: |
57
${{ runner.os }}-maven-
58
59
- - name: Maven verify and sonar
+ - name: Run unit tests with sonar
60
run: mvn clean verify sonar:sonar -Pcoverage -Dsonar.projectKey=org.utplsql:utplsql-maven-plugin
61
env:
62
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
64
65
+ - name: Run integration tests
66
+ run: mvn verify -Dskip.surefire.tests
67
+
68
- name: Maven deploy snapshot
69
run: mvn deploy -DskipTests
70
0 commit comments