Skip to content

Commit

Permalink
Comment out sonarqube stuff for now
Browse files Browse the repository at this point in the history
sonarqube / tests are only required for Milestone 2
  • Loading branch information
isicu authored Feb 17, 2024
1 parent ef6347c commit 70b5529
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,30 @@ on:
workflow_dispatch:

jobs:
test:
name: Test and Sonarqube
runs-on: ubuntu-latest

steps:
- name: Checkout repository code
uses: actions/checkout@v2

- name: Install Java 17
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "17"

- name: Test and analyze
run: ./gradlew test jacocoTestReport sonarqube
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# test:
# name: Test and Sonarqube
# runs-on: ubuntu-latest
#
# steps:
# - name: Checkout repository code
# uses: actions/checkout@v2
#
# - name: Install Java 17
# uses: actions/setup-java@v3
# with:
# distribution: "temurin"
# java-version: "17"
#
# - name: Test and analyze
# run: ./gradlew test jacocoTestReport sonarqube
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

deploy:
name: Deploying to Google Cloud
runs-on: ubuntu-latest
needs: test
# needs: test

steps:
- name: Checkout
Expand Down

0 comments on commit 70b5529

Please sign in to comment.