-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/add nightly without sonar (#459)
* Add first github workflow file (nightly) * update first github workflow triggert by push event * update first github workflow deactivate int tests and cirlceCi pipline * update first github workflow remove Int Test folder * update first github workflow add Int Test folder * update first github workflow add Int Test again * update first github workflow schedule job * update first github workflow schedule job I * add nightly as github workflow * disable sonar
- Loading branch information
Showing
2 changed files
with
58 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: nightly test run | ||
on: | ||
schedule: | ||
- cron: '0 22 * * *' | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
- name: Run unit tests | ||
run: mvn clean test | ||
- name: Run integration tests | ||
run: mvn verify -P integration-tests | ||
- name: Save test results | ||
run: | | ||
mkdir -p ~/test-results/unit-tests/ | ||
mkdir -p ~/test-results/integration-tests/ | ||
find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} ~/test-results/unit-tests/ \; | ||
find . -type f -regex ".*/target/failsafe-reports/.*xml" -exec cp {} ~/test-results/integration-tests/ \; | ||
- name: Run CVE scan | ||
run: mvn dependency-check:check | ||
- name: Upload test coverage report | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: test-coverage-report | ||
path: target/site/jacoco-merged-test-coverage-report | ||
- name: Upload dependency check report | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dependency-check-report | ||
path: target/dependency-check-report.html | ||
- name: Upload unit tests report | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: unit-tests-report | ||
path: ~/test-results/unit-tests/ | ||
- name: Upload integration tests report | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: integration-tests-report | ||
path: ~/test-results/integration-tests/ | ||
#- name: SonarCloud Scan | ||
# uses: sonarsource/[email protected] | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |