Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
0Tech committed Feb 23, 2024
1 parent 00cb5e1 commit 449a724
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: test app
if: env.GIT_DIFF
run: |
go test -coverprofile=cover.out ./...
echo DUMMY >cover.out
- uses: actions/upload-artifact@v3
if: env.GIT_DIFF
with:
Expand Down
7 changes: 7 additions & 0 deletions hello.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package hello

import "fmt"

func hello(name string) string {
return fmt.Sprintf("hello, %s!", name)
}

0 comments on commit 449a724

Please sign in to comment.