Skip to content

Merge pull request #15 from WeatherGod3218/weather-dev #25

Merge pull request #15 from WeatherGod3218/weather-dev

Merge pull request #15 from WeatherGod3218/weather-dev #25

Workflow file for this run

name: Sonarqube
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}