-
Notifications
You must be signed in to change notification settings - Fork 9
66 lines (56 loc) · 1.81 KB
/
check_sonar_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: CI - iOS
on:
pull_request:
types: [opened, edited, reopened, synchronize]
workflow_dispatch:
env:
GH_TOKEN: ${{ secrets.GIT_TOKEN_SECRET }}
OWNER: ${{ github.repository_owner }}
REPO: ${{ github.event.repository.name }}
PR_NUMBER: ${{ github.event.number }}
SONAR_HOST_URL: "https://sonarqube.trustly.one"
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_SECRET }}
SONAR_PROJECT_KEY: "trustly-ios"
SONAR_PROJECT_NAME: "trustly-ios"
jobs:
SonarQube:
runs-on: macOS-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: |
# Update Homebrew
brew update
# Install SwiftLint
brew install swiftlint
# Install Tailor
brew install tailor
# Install xcpretty
sudo gem install -n /usr/local/bin xcpretty
# Install Lizard
brew install lizard
- name: Install CocoaPods
run: |
gem install cocoapods
pod install --project-directory=Example
- name: Install sonnar-scanner
run: |
brew install sonar-scanner
- name: Run SonarQube Analysis
run: |
# Create sonar-project.properties or update it dynamically
echo "sonar.login=${{ secrets.SONAR_TOKEN_SECRET }}" >> sonar-project.properties
- name: Run Sonar-Swift Script
run: |
chmod +x ./run-sonar-swift.sh
./run-sonar-swift.sh -v
- name: Verify Coverage Report
run: |
if [ -f "sonar-reports/generic-coverage.xml" ]; then
echo "Coverage report generated successfully: sonar-reports/generic-coverage.xml"
else
echo "Coverage report not found!" && exit 1
fi