Skip to content

✏️ Update sonar-project.properties #7

✏️ Update sonar-project.properties

✏️ Update sonar-project.properties #7

Workflow file for this run

name: 'Lens Unit own CI'
on:
push:
branches:
- main
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: compile the code
run: ./build.sh
- name: run the tests
run: ./runtests.sh org.lensunit.AllTests
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v4
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}