From bc9cc73be4d9f3b8c681b9f0c6879b9d0cd1a912 Mon Sep 17 00:00:00 2001 From: Mandala310 Date: Sat, 1 Jul 2023 11:43:38 +0800 Subject: [PATCH 1/3] Modified Some File --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f414351..93c6d5c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +#Test Comments Added # InstantAppSample An Android Instant App is a native Android app reachable through a URL with no Google Play Store installation required. A piece of the app containing the selected feature is actually downloaded and installed on the fly. From 7e3bac5862b79310af95123afc60d9db15dde613 Mon Sep 17 00:00:00 2001 From: Mandala310 Date: Sat, 1 Jul 2023 11:50:34 +0800 Subject: [PATCH 2/3] Changes for Lab3 --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 93c6d5c..0f16f58 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -#Test Comments Added +# Test Comments Added +# Branch 3 # InstantAppSample An Android Instant App is a native Android app reachable through a URL with no Google Play Store installation required. A piece of the app containing the selected feature is actually downloaded and installed on the fly. From 02644e5482dadbf592838ca95ce66adea0286c71 Mon Sep 17 00:00:00 2001 From: Mandala310 <138269046+Mandala310@users.noreply.github.com> Date: Sun, 20 Aug 2023 12:16:48 +0800 Subject: [PATCH 3/3] Create sonarqube.yaml --- .github/workflows/sonarqube.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/sonarqube.yaml diff --git a/.github/workflows/sonarqube.yaml b/.github/workflows/sonarqube.yaml new file mode 100644 index 0000000..951e31b --- /dev/null +++ b/.github/workflows/sonarqube.yaml @@ -0,0 +1,20 @@ +name: Run SonarQube with Maven + +on: push + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'temurin' + cache: maven + - name: Build with Maven cloud + run: mvn -B verify sonar:sonar -Dsonar.projectKey=groupproject_groupproject -Dsonar.organization=groupproject -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=$SONAR_TOKEN + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}