d86b40d323
SonarQube Scan / SonarQube Analysis (push) Successful in 1m27s
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-go](https://github.com/actions/setup-go) | action | major | `v4` → `v6` | --- ### Release Notes <details> <summary>actions/setup-go (actions/setup-go)</summary> ### [`v6`](https://github.com/actions/setup-go/compare/v5...v6) [Compare Source](https://github.com/actions/setup-go/compare/v5...v6) ### [`v5`](https://github.com/actions/setup-go/compare/v4...v5) [Compare Source](https://github.com/actions/setup-go/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzYuMCIsInVwZGF0ZWRJblZlciI6IjQzLjEzNi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJ0eXBlL2RlcGVuZGVuY2llcyJdfQ==--> Reviewed-on: #6 Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk> Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
32 lines
672 B
YAML
32 lines
672 B
YAML
name: SonarQube Scan
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sonarqube:
|
|
name: SonarQube Analysis
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: '1.26'
|
|
cache: true
|
|
|
|
- name: Run tests with coverage
|
|
run: go test -v -coverprofile=coverage.out ./src
|
|
|
|
- name: Run SonarQube scanner
|
|
uses: SonarSource/sonarqube-scan-action@v7.1.0
|
|
env:
|
|
SONAR_HOST_URL: ${{ vars.SONAR_URL }}
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|