Skip to content

Commit dcd2827

Browse files
committed
test(gh): Ordering steps...
I'm stupid... I need to upload artifacts after the creation.
1 parent b93a3df commit dcd2827

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/go-test.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,6 @@ jobs:
1212
tests:
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
2115
- uses: actions/checkout@v4
2216
- name: Set up Go
2317
uses: actions/setup-go@v5
@@ -31,6 +25,12 @@ jobs:
3125
- name: Launch Test
3226
run: |
3327
go vet ./... && go test -coverprofile=coverprofile.out -json -v ./... > gotest.json
28+
- uses: actions/upload-artifact@v4
29+
with:
30+
name: tests-results
31+
path: |
32+
coverprofile.out
33+
gotest.json
3434
sonar:
3535
runs-on: ubuntu-latest
3636
needs: tests

0 commit comments

Comments
 (0)