Skip to content

Commit 23d0afd

Browse files
committedDec 5, 2024
test(gh): Use 2 steps
I prefer to split tests and sonar upload
1 parent 5c93938 commit 23d0afd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 

‎.github/workflows/go-test.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ jobs:
1212
test:
1313
runs-on: ubuntu-latest
1414
steps:
15+
- uses: actions/upload-artifact@v4
16+
with:
17+
name: tests-results
18+
path: |
19+
coverprofile.out
20+
gotest.json
1521
- uses: actions/checkout@v4
1622
- name: Set up Go
1723
uses: actions/setup-go@v5
@@ -25,6 +31,13 @@ jobs:
2531
- name: Launch Test
2632
run: |
2733
go vet ./... && go test -coverprofile=coverprofile.out -json -v ./... > gotest.json
34+
sonar:
35+
runs-on: ubuntu-latest
36+
needs: tests
37+
steps:
38+
- uses: actions/download-artifact@v4
39+
with:
40+
name: tests-results
2841
- name: SonarCloud Scan
2942
uses: SonarSource/sonarcloud-github-action@master
3043
env:

0 commit comments

Comments
 (0)
Failed to load comments.