2025-01-02 17:30:20 +01:00
|
|
|
name: CI w/ Poetry and Docker
|
2025-01-01 00:17:19 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
paths-ignore:
|
|
|
|
- "README.md"
|
|
|
|
- "LICENSE.md"
|
|
|
|
- ".gitignore"
|
|
|
|
- "renovate.json"
|
|
|
|
- ".gitea/CODEOWNERS"
|
|
|
|
- ".archive"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ci:
|
2025-01-02 17:30:20 +01:00
|
|
|
runs-on: ubuntu-poetry-latest
|
2025-01-01 00:17:19 +01:00
|
|
|
steps:
|
|
|
|
- name: Check out repository code
|
2025-01-01 04:18:14 +01:00
|
|
|
uses: actions/checkout@v4.2.2
|
2025-01-01 00:17:19 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2025-01-02 17:30:20 +01:00
|
|
|
- name: Run Hadolint
|
|
|
|
uses: hadolint/hadolint-action@v3.1.0
|
2025-01-01 00:17:19 +01:00
|
|
|
with:
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
output-file: hadolint.out
|
|
|
|
format: sonarqube
|
|
|
|
no-fail: true
|
|
|
|
|
|
|
|
- name: Setup Python
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: "${{ vars.PYTHON_VERSION }}"
|
2025-01-02 17:30:20 +01:00
|
|
|
cache: 'poetry'
|
2025-01-01 02:16:43 +01:00
|
|
|
|
2025-01-01 00:17:19 +01:00
|
|
|
- name: Install dependencies
|
2025-01-02 17:30:20 +01:00
|
|
|
run: poetry install
|
2025-01-01 00:17:19 +01:00
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: |
|
2025-01-02 17:30:20 +01:00
|
|
|
poetry run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt app/ tests/
|
2025-01-01 00:17:19 +01:00
|
|
|
cat lintreport.txt
|
|
|
|
|
|
|
|
- name: Unit Test
|
|
|
|
run: |
|
2025-01-02 17:30:20 +01:00
|
|
|
poetry run coverage run -m pytest -v --junitxml=testresults.xml
|
|
|
|
poetry run coverage xml
|
2025-01-01 00:17:19 +01:00
|
|
|
sed -i 's@${{ gitea.workspace }}@/github/workspace@g' coverage.xml
|
|
|
|
|
|
|
|
- name: SonarQube Cloud Scan
|
|
|
|
uses: SonarSource/sonarqube-scan-action@v4.2.1
|
|
|
|
env:
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
|
|
|
|
- name: Snyk Vulnerability Scan
|
|
|
|
uses: snyk/actions/python-3.10@master
|
|
|
|
continue-on-error: true # To make sure that SARIF upload gets called
|
|
|
|
env:
|
|
|
|
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
|
|
|
with:
|
|
|
|
args: --sarif-file-output=snyk.sarif --all-projects
|