-
Notifications
You must be signed in to change notification settings - Fork 13
57 lines (52 loc) · 1.7 KB
/
sonar-cloud.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
name: SonarCloud
on:
push:
branches:
- main
paths-ignore:
- ReadMe.md
- docker-compose-tools.yml
- .github/**
- config/**
- gatling-tests/**
- run.sh
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'microsoft' # Alternative distribution options are available.
cache: 'maven'
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Create and populate ~/.testcontainers.properties
run: |
cat <<EOF > ~/.testcontainers.properties
testcontainers.reuse.enable=true
EOF
echo "cat ~/.testcontainers.properties"
cat ~/.testcontainers.properties
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./mvnw -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=rajadilipkolli_spring-boot-microservices-series-v2
- name: Run End to End Tests
run: ./test-em-all.sh start stop