Skip to content

Commit

Permalink
Fixing CI (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
gemyago authored Dec 1, 2024
1 parent d4f0232 commit 3fbf7ce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-test-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Get Test Artifacts
run: |
gh run download --dir tests/golang/.cover/ -n test-artifacts-pr-${{ github.event.pull_request.node_id }}
gh run download --dir .cover/ -n test-artifacts-pr-${{ github.event.pull_request.node_id }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: test-artifacts-pr-${{ github.event.pull_request.node_id }}
path: |
tests/golang/.cover/coverage.svg
tests/golang/.cover/coverage.html
include-hidden-files: true
path: .cover/
retention-days: 10
overwrite: true
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ tests/golang/push-test-artifacts: $(golang_tests_cover_dir)/coverage.svg.gh-cli-
--input $(golang_tests_cover_dir)/coverage.html.gh-cli-body.json

.PHONY: tests/golang tests/golang-generated-routes tests/golang-apigen
tests/golang: $(golang_tests_cover_dir)/generated-routes-profile.out $(golang_tests_cover_dir)/apigen-profile.out
tests/golang: tests/golang-generated-routes tests/golang-apigen
tests/golang-generated-routes: $(golang_tests_cover_dir)/generated-routes-profile.out
tests/golang-apigen: $(golang_tests_cover_dir)/apigen-profile.out

Expand Down

0 comments on commit 3fbf7ce

Please sign in to comment.