Add SecretName in TLS + adapt github actions #95

Merged
metal3d merged 5 commits from develop into master 2024-12-05 06:16:33 +00:00
Showing only changes of commit dcd282779f - Show all commits

View File

@@ -12,12 +12,6 @@ jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/upload-artifact@v4
with:
name: tests-results
path: |
coverprofile.out
gotest.json
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
@@ -31,6 +25,12 @@ jobs:
- name: Launch Test
run: |
go vet ./... && go test -coverprofile=coverprofile.out -json -v ./... > gotest.json
- uses: actions/upload-artifact@v4
with:
name: tests-results
path: |
coverprofile.out
gotest.json
sonar:
runs-on: ubuntu-latest
needs: tests