Merge pull request #17 from oclay1st/develop #10
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
name: Project Updates | |
on: | |
push: | |
branches: [ 'main' ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Maven Central Repository | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
java-package: 'jdk' | |
cache: 'maven' | |
- name: Coverage analyze | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: | | |
mvn verify sonar:sonar \ | |
-Dsonar.host.url=https://sonarcloud.io \ | |
-Dsonar.organization=oclay1st \ | |
-Dsonar.projectKey=oclay1st_WFDB | |