Skip to content

Pullrequest test

Pullrequest test #1

Workflow file for this run

name: SonarQube Scan
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@v1
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}