We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a91d3f0 commit 008153dCopy full SHA for 008153d
.github/workflows/build.yml
@@ -0,0 +1,19 @@
1
+name: Build
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+ types: [opened, synchronize, reopened]
8
+jobs:
9
+ build:
10
+ name: Build and analyze
11
+ runs-on: aws-ec2
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
+ - uses: SonarSource/sonarqube-scan-action@v4
17
+ env:
18
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
19
+ SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
0 commit comments