diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 772ffab..679abd5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,4 +13,4 @@ jobs: uses: actions/setup-go@v1 with: go-version: ${{ matrix.go }} - - run: echo "i am groot" \ No newline at end of file + - run: go run main.go \ No newline at end of file diff --git a/main.go b/main.go new file mode 100644 index 0000000..4734979 --- /dev/null +++ b/main.go @@ -0,0 +1,5 @@ +package main +import "fmt" +func main() { + fmt.Println("hello world") +} \ No newline at end of file