6 Commits

Author SHA1 Message Date
295d7d5373 use fork of upload artifact
Some checks failed
Go-Tests / tests (push) Successful in 1m57s
Go-Tests / sonar (push) Failing after 1m30s
2025-08-19 16:20:03 +02:00
7d48072102 v5 doesn't exists... 2025-08-19 16:15:23 +02:00
23fb18d792 try upload artifact v5
Some checks failed
Go-Tests / tests (push) Failing after 22s
Go-Tests / sonar (push) Has been skipped
2025-08-19 16:14:21 +02:00
323b6e651c fix helm dep
Some checks failed
Go-Tests / tests (push) Failing after 2m29s
Go-Tests / sonar (push) Has been skipped
2025-08-19 16:03:47 +02:00
c86b2a5729 test workfow
Some checks failed
Go-Tests / tests (push) Failing after 3m47s
Go-Tests / sonar (push) Has been skipped
2025-08-19 15:09:30 +02:00
88f69b1935 test workfow 2025-08-19 15:08:31 +02:00

View File

@@ -1,16 +1,9 @@
name: Go-Tests
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
- main
push:
branches:
- master
- main
- "releases/**"
- "**"
jobs:
tests:
permissions:
@@ -21,12 +14,21 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24
go-version: 1.25
- name: Install helm
run: |
command -v helm || curl -sSL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
- name: Tidy
run: |
export GOPROXY='https://proxy.golang.org,direct'
go mod tidy
- name: Launch Test
run: |
go mod tidy
go vet ./... && go test -coverprofile=coverprofile.out -json -v ./... > gotest.json
- uses: actions/upload-artifact@v4
go vet ./...
go test -coverprofile=coverprofile.out -json -v ./... > gotest.json
# - uses: actions/upload-artifact@v4
- uses: christopherhx/gitea-upload-artifact@v4
with:
name: tests-results
path: |