otter-space-sdk/.gitea/workflows/ build_check.yaml
SoXX bfa074fd9b
All checks were successful
Gitea Build Check / Build (push) Successful in 10m54s
ci(postgres): fixed trigger
Signed-off-by: SoXX <soxx@fenpa.ws>
2024-06-24 12:02:39 +02:00

39 lines
1.4 KiB
YAML

name: Gitea Build Check
run-name: ${{ gitea.actor }} is testing the build
on:
push:
branches:
- develop/postgresql
pull_request:
branches: [ "main" ]
jobs:
Build:
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: Setup Go environment
uses: https://github.com/actions/setup-go@v3
with:
# The Go version to download (if necessary) and use. Supports semver spec and ranges.
go-version: 1.22.0 # optional
# Path to the go.mod file.
go-version-file: ./go.mod # optional
# Set this option to true if you want the action to always check for the latest available version that satisfies the version spec
check-latest: true # optional
# Used to specify whether caching is needed. Set to true, if you'd like to enable caching.
cache: true # optional
- name: Execute Go Test files with coverage report
run: go test -v ./... -json -coverprofile="coverage.out" > "test-report.out"
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }}
with:
args: >
-Dsonar.projectKey=Anthrove---OtterSpace-SDK