Skip to content

Commit 6a23b60

Browse files
authored
Update CI/CD pipelines (#11)
1 parent 94abb29 commit 6a23b60

File tree

3 files changed

+483
-2
lines changed

3 files changed

+483
-2
lines changed

.github/workflows/doxygen_gen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository and submodules
1414
uses: actions/checkout@v4

.github/workflows/static-analisys.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,10 @@ jobs:
2828
- uses: actions/upload-artifact@v4
2929
with:
3030
name: Static_Analisys_Results
31-
path: sa_results
31+
path: sa_results
32+
- name: Add static analysis results to summary
33+
run: |
34+
echo '## 🧪 Static Analysis Results' >> $GITHUB_STEP_SUMMARY
35+
echo '```' >> $GITHUB_STEP_SUMMARY
36+
cat ./sa_results/general.txt >> $GITHUB_STEP_SUMMARY
37+
echo '```' >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)