We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe4222c + 2e20512 commit feb5dfdCopy full SHA for feb5dfd
.github/workflows/ci-cd.yml
@@ -2,9 +2,9 @@ name: CI/CD Pipeline
2
3
on:
4
push:
5
- branches: [ main, develop ]
+ branches: [ main, develop, 'bugfix/**' ]
6
pull_request:
7
8
release:
9
types: [ published ]
10
@@ -59,6 +59,8 @@ jobs:
59
60
steps:
61
- uses: actions/checkout@v6
62
+ with:
63
+ fetch-depth: 0
64
65
- name: Set up Python
66
uses: actions/setup-python@v6
@@ -78,7 +80,7 @@ jobs:
78
80
79
81
- name: Run Safety dependency scan
82
run: |
- safety check --json --output safety-report.json || true
83
+ safety check --json > safety-report.json || true
84
safety check
85
86
- name: Upload security scan results
0 commit comments