mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-13 01:12:56 +01:00
Winni Neessen
b2d6a3418e
The commit includes the addition of four new workflows to the .forgejo workflows directory. These are Codecov for code coverage handling, SonarQube for continuous inspection of code quality, REUSE Compliance Check for license compliance, and golangci-lint for running linters on Go code. The workflows all target the 'main' branch and are triggered by 'push' and 'pull_request' events.
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
# SPDX-FileCopyrightText: 2023 Winni Neessen <wn@neessen.dev>
|
|
#
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
name: SonarQube
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # or the name of your main branch
|
|
pull_request:
|
|
branches:
|
|
- main # or the name of your main branch
|
|
env:
|
|
API_KEY: ${{ secrets.API_KEY }}
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.22'
|
|
|
|
- name: Run unit Tests
|
|
run: |
|
|
go test -v -shuffle=on -race --coverprofile=./cov.out ./...
|
|
|
|
- name: Install jq
|
|
run: |
|
|
apt-get update; apt-get -y install jq; which jq
|
|
|
|
- uses: sonarsource/sonarqube-scan-action@master
|
|
env:
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
|
|
- uses: sonarsource/sonarqube-quality-gate-action@master
|
|
timeout-minutes: 5
|
|
env:
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|