Compare commits

..

No commits in common. "8fe87e12dff5eb7ccf61a7f187ff0da102485e5d" and "34c001473b4d1aee3012fb7cfb1287af1af1fb05" have entirely different histories.

2 changed files with 13 additions and 6 deletions

View File

@ -4,7 +4,6 @@ on:
push: push:
branches: branches:
- main - main
- ci/*
pull_request: pull_request:
branches: [ "main" ] branches: [ "main" ]
@ -17,10 +16,16 @@ jobs:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup Go environment - name: Setup Go environment
uses: https://gitea.com/actions/setup-go@v3 uses: https://github.com/actions/setup-go@v5
with: with:
go-version-file: 'go.mod' # The Go version to download (if necessary) and use. Supports semver spec and ranges.
cache: true 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 - name: Execute Go Test files with coverage report
run: TESTCONTAINERS_RYUK_DISABLED=true go test -v ./... -json -coverprofile="coverage.out" | tee "test-report.out" run: TESTCONTAINERS_RYUK_DISABLED=true go test -v ./... -json -coverprofile="coverage.out" | tee "test-report.out"
@ -29,3 +34,6 @@ jobs:
env: env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }} SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }}
with:
args: >
-Dsonar.projectKey=Anthrove---OtterSpace-SDK

View File

@ -1 +0,0 @@
sonar.projectKey=Anthrove---OtterSpace-SDK