-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (55 loc) · 1.39 KB
/
cicd.yaml
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
name: CI/CD-pipeline-project
on:
push:
branches:
- ci-test
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
sonarqube:
name: Sonarqube-analysis
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Set up Java 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Analyze code
uses: sonarsource/sonarcloud-github-action@v1
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
security:
name: Snyk-analysis
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install Snyk
run: |
curl -o- https://static.snyk.io/cli/v1/install.sh | sh
- name: Run Snyk to check for vulnerabilities
run: snyk test --file=requirements.txt --package-manager=pip
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}