Skip to content

Add new functionalities to reset offsets #208

Add new functionalities to reset offsets

Add new functionalities to reset offsets #208

Workflow file for this run

name: SonarQube
on:
push:
branches:
- master
pull_request:
jobs:
sonarcloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
with:
args: >
-Dsonar.organization=astrolabsoftware
-Dsonar.projectKey=fink-client
-Dsonar.sources=fink_client/,tests/
-Dsonar.test.exclusions=fink_client/htmlcov,tests/htmlcov,fink_client/scripts
-Dsonar.verbose=true
-Dsonar.coverage.exclusions=**/**
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}