Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matsuyoshi30/harbor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatsuyoshi <sfbgwm30@gmail.com>2020-03-23 16:40:29 +0300
committermatsuyoshi <sfbgwm30@gmail.com>2020-03-23 16:40:29 +0300
commit5abc123ea6b8bab0ca52f6b29621c04bc1a8afc1 (patch)
tree310aca7f3cb55f115de3d0c56356b4731a0b9a33 /.github
parent8b992472bd0636c8ac12e75c3e7ec03fd8819bda (diff)
add SonarCloud properties and workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..4ff4d4c
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,13 @@
+on: push
+name: Main Workflow
+jobs:
+ sonarCloudTrigger:
+ name: SonarCloud Trigger
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@master
+ - name: SonarCloud Scan
+ uses: SonarSource/sonarcloud-github-action@v1.1
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} \ No newline at end of file