actions-hugo/.github/workflows/sonarsource.yml
2019-11-13 12:31:05 +09:00

19 lines
383 B
YAML

name: Sonar Cloud
on: [push]
jobs:
sonarcloud:
name: SonarCloud Trigger
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}