Skip to content

Update Dependencies #248

Update Dependencies

Update Dependencies #248

Workflow file for this run

name: Sonar Cloud
on: [ push, pull_request ]
env:
python_version: '3.10'
jobs:
sonarcloud:
name: Sonar Cloud Analysis
runs-on: ubuntu-latest
container: ghcr.io/osgeo/gdal:ubuntu-full-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install dependencies
run: |
apt -y update
apt --reinstall install -y --no-install-recommends libc-bin
apt install -y --no-install-recommends --fix-missing python3-venv
python -m venv venv
source venv/bin/activate
python -m ensurepip --upgrade
python -m pip install -r requirements.txt
- name: Run Tests
run: |
coverage run -m unittest discover && coverage xml -i
- 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.UBIQUE_SONAR_TOKEN }}
with:
args: >
-Dsonar.organization=ubiqueinnovation
-Dsonar.projectKey=UbiqueInnovation_map-tools
-Dsonar.python.version=${{ env.python_version }}
-Dsonar.python.coverage.reportPaths=coverage.xml