Skip to content

add link to dockerhub repository of kunefe #118

add link to dockerhub repository of kunefe

add link to dockerhub repository of kunefe #118

Workflow file for this run

name: sonarcloud
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Python info
shell: bash -e {0}
run: |
which python
python --version
- uses: eWaterCycle/setup-apptainer@v2
with:
apptainer-version: 1.2.5
- name: Apptainer info
shell: bash -e {0}
run: |
which apptainer
apptainer version
- name: Install dependencies
run: python -m pip install .[dev]
- name: Run unit tests with coverage
run: python -m pytest --cov --cov-report term --cov-report xml --junitxml=xunit-result.xml tests/
- name: Correct coverage paths
run: sed -i "s+$PWD/++g" coverage.xml
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{secrets.SONAR_TOKEN }}